URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [objc/] [execute/] [function-message-1.m] - Rev 154
Go to most recent revision | Compare with Previous | Blame | View Log
#include <objc/Object.h> @interface Foo : Object + bar; @end int foocalled = 0; int barcalled = 0; id foo() { if (foocalled) abort (); foocalled = 1; return [Foo class]; } @implementation Foo + bar { if (barcalled) abort (); barcalled = 1; return self; } @end int main(int argc,char **argv) { [foo() bar]; return 0; }
Go to most recent revision | Compare with Previous | Blame | View Log