URL
https://opencores.org/ocsvn/scarts/scarts/trunk
Subversion Repositories scarts
[/] [scarts/] [trunk/] [toolchain/] [scarts-gcc/] [gcc-4.1.1/] [gcc/] [testsuite/] [objc/] [execute/] [np-1.m] - Rev 26
Go to most recent revision | Compare with Previous | Blame | View Log
/* * Contributed by Nicola Pero <n.pero@mi.flashnet.it> * Tue Sep 19 4:29AM */ #include <objc/objc.h> #include <objc/Protocol.h> @protocol MyProtocol - (oneway void) methodA; @end @interface MyObject <MyProtocol> @end @implementation MyObject - (oneway void) methodA { } @end int main (void) { MyObject *object = nil; [object methodA]; exit (0); }
Go to most recent revision | Compare with Previous | Blame | View Log