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