URL
https://opencores.org/ocsvn/scarts/scarts/trunk
Subversion Repositories scarts
[/] [scarts/] [trunk/] [toolchain/] [scarts-gcc/] [gcc-4.1.1/] [gcc/] [testsuite/] [objc.dg/] [proto-lossage-6.m] - Rev 12
Compare with Previous | Blame | View Log
/* { 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; }