URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [objc/] [execute/] [np-2.m] - Rev 326
Go to most recent revision | Compare with Previous | Blame | View Log
/* * Contributed by Nicola Pero <n.pero@mi.flashnet.it> * Tue Sep 19 4:34AM */ #include "../../objc-obj-c++-shared/Protocol1.h" #include <objc/objc.h> @protocol MyProtocol + (oneway void) methodA; @end @interface MyObject <MyProtocol> @end @implementation MyObject + (oneway void) methodA { printf ("methodA\n"); } #ifdef __NEXT_RUNTIME__ + initialize { return self; } #endif @end int main (void) { [MyObject methodA]; exit (0); }
Go to most recent revision | Compare with Previous | Blame | View Log