blob: 6b17aa3368712e1acd81f0252421501214c4e91d [file] [log] [blame]
/* APPLE LOCAL file mainline */
@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;
}