blob: 35c0956ed8ecfcc7372d4d281b5569ef44787961 [file] [log] [blame]
/* Do not lose references to forward-declared protocols. */
/* { dg-do compile } */
@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