blob: cce3d64f7332e24ec8da7dae60a9f942e13c02b4 [file] [log] [blame]
/* APPLE LOCAL file mainline */
/* { dg-do compile } */
@class Base;
@protocol _Protocol;
@interface ClassA {
}
-(void) func1:(Base<_Protocol> *)inTarget;
@end
int main()
{
ClassA* theA = 0;
Base<_Protocol>* myBase = 0;
[theA func1:myBase];
return 0;
}