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-5.m] - Rev 12
Compare with Previous | Blame | View Log
/* 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