mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 16:33:37 +01:00
20 lines
226 B
Mathematica
20 lines
226 B
Mathematica
|
// RUN: %llvmgcc -x objective-c -c %s -o /dev/null
|
||
|
@protocol O
|
||
|
@end
|
||
|
@interface O < O > {
|
||
|
}
|
||
|
@end
|
||
|
struct A {
|
||
|
};
|
||
|
@protocol AB
|
||
|
- (unsigned) ver;
|
||
|
@end
|
||
|
@interface AGy:O < AB > {
|
||
|
}
|
||
|
@end
|
||
|
@implementation AGy
|
||
|
- (unsigned) ver {
|
||
|
}
|
||
|
@end
|
||
|
|