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