llvm-6502/test/FrontendObjC/2007-10-18-ProDescriptor.m
2007-12-11 15:55:52 +00:00

20 lines
226 B
Objective-C

// 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