1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-01 16:33:37 +01:00
llvm-mirror/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