blob: 7e9f02853991a21442a344a7bdd8a5d93b885389 [file] [log] [blame]
// RUN: %llvmgcc -x objective-c -m64 -c %s -o /dev/null
@interface A
@end
@protocol P
@end
@interface B : A <P>
{
}
@end
@implementation B
- (void)test {
}
@end