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