blob: a18b3578cbce38dab51fc45f3ee52bfeff25e0fc [file] [log] [blame]
/* Do not lose references to forward-declared protocols. */
/* { dg-do compile } */
/* { dg-additional-options "-Wno-objc-root-class" } */
@class MyBaseClass;
@class MyClassThatFails;
@protocol _MyProtocol;
@interface MyClassThatFails
- (MyBaseClass<_MyProtocol> *) aMethod;
@end
@interface MyBaseClass
@end
@protocol _MyProtocol
@end
@implementation MyClassThatFails
- (MyBaseClass<_MyProtocol> *) aMethod
{
return 0;
}
@end