URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [objc/] [execute/] [function-message-1.m] - Rev 307
Go to most recent revision | Compare with Previous | Blame | View Log
#import "../../objc-obj-c++-shared/Object1.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