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