URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [objc/] [execute/] [cascading-1.m] - Rev 717
Go to most recent revision | Compare with Previous | Blame | View Log
#include <stdlib.h> #import "../../objc-obj-c++-shared/TestsuiteObject.m" @interface Foo : TestsuiteObject + 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; }
Go to most recent revision | Compare with Previous | Blame | View Log