blob: 4f6532c77749b8587c85b8e144fbd39af25279bf [file] [log] [blame]
/* Check if casting the receiver type causes method lookup to succeed. This was broken
in Objective-C++. */
/* Contributed by Ziemowit Laski <zlaski@apple.com> */
/* { dg-do compile } */
__attribute__((objc_root_class)) @interface A
@end
@interface B: A
- (void)f;
@end
void g(A *p) { [(B *)p f]; }