URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [objc/] [execute/] [np-1.m] - Rev 307
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-obj-c++-shared/Protocol1.h" #include <objc/objc.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