New test.

llvm-svn: 43162
This commit is contained in:
Devang Patel 2007-10-19 01:28:02 +00:00
parent de16ad1446
commit e1b7fa3410
1 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,19 @@
// 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