blob: f9565763e5f3dc2bb601125bd73df03addb193c1 [file] [log] [blame]
/* APPLE LOCAL file radar 4398221 */
/* Issue warning if protocol used in @interface declaration is not defined. */
/* { dg-do compile } */
@protocol MyProto;
__attribute__((objc_root_class)) @interface MyClass <MyProto> /* { dg-warning "no definition of protocol \\'MyProto\\' " } */
@end
@interface MyClass (Category) <MyProto> /* { dg-warning "no definition of protocol \\'MyProto\\' " } */
@end