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