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