1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-25 22:12:57 +02:00
llvm-mirror/test/FrontendObjC/2007-10-18-ProDescriptor.m

20 lines
226 B
Mathematica
Raw Normal View History

// RUN: %llvmgcc -x objective-c -S %s -o /dev/null
2007-10-19 03:28:02 +02:00
@protocol O
@end
@interface O < O > {
}
@end
struct A {
};
@protocol AB
- (unsigned) ver;
@end
@interface AGy:O < AB > {
}
@end
@implementation AGy
- (unsigned) ver {
}
@end