diff options
Diffstat (limited to 'test/CodeGenObjC/2007-10-18-ProDescriptor.m')
-rw-r--r-- | test/CodeGenObjC/2007-10-18-ProDescriptor.m | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/test/CodeGenObjC/2007-10-18-ProDescriptor.m b/test/CodeGenObjC/2007-10-18-ProDescriptor.m new file mode 100644 index 000000000000..35a0df3a1a9f --- /dev/null +++ b/test/CodeGenObjC/2007-10-18-ProDescriptor.m @@ -0,0 +1,18 @@ +// RUN: %clang_cc1 -emit-llvm %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 |