blob: 02bd897ee38e1a4bc706a6092690e588b72205ef [file] [log] [blame]
/* { dg-do compile } */
@protocol O
@end
@interface O < O > {
}
@end
struct A {
};
@protocol AB
- (unsigned) ver;
@end
@interface AGy:O < AB > {
}
@end
@implementation AGy
- (unsigned) ver {
}
@end