blob: b3eda57eec5d27b3238b934b9a7f8c16ed04c4b9 [file] [log] [blame] [edit]
// 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 {
return 0;
}
@end