URL
https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk
Subversion Repositories openrisc_2011-10-31
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [objc/] [execute/] [enumeration-1.m] - Rev 378
Go to most recent revision | Compare with Previous | Blame | View Log
/* Contributed by Nicola Pero - Wed Dec 5 17:12:40 GMT 2001 */ #include <stdlib.h> #import "../../objc-obj-c++-shared/Object1.h" #include <objc/objc.h> /* Test using a bitfield enumeration ivar. */ typedef enum { black, white } color; @interface TestClass: Object { color c:2; } - (color)color; - (void)setColor: (color)a; @end @implementation TestClass - (color)color { return c; } - (void)setColor: (color)a { c = a; } @end int main (void) { TestClass *c; c = [TestClass new]; [c setColor: black]; [c setColor: white]; [c setColor: black]; if ([c color] != black) { abort (); } return 0; }
Go to most recent revision | Compare with Previous | Blame | View Log