llvm-6502/test/FrontendObjC/2008-11-12-Metadata.m

15 lines
162 B
Mathematica
Raw Normal View History

// 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