URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [objc/] [execute/] [np-2.m] - Rev 702
Compare with Previous | Blame | View Log
/* * Contributed by Nicola Pero <n.pero@mi.flashnet.it> * Tue Sep 19 4:34AM */ #include <objc/objc.h> @protocol MyProtocol + (oneway void) methodA; @end @interface MyObject <MyProtocol> @end @implementation MyObject + (oneway void) methodA { printf ("methodA\n"); } + initialize { return self; } @end int main (void) { [MyObject methodA]; return 0; }