aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/objc/execute/enumeration-1.m
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.9/gcc/testsuite/objc/execute/enumeration-1.m')
-rw-r--r--gcc-4.9/gcc/testsuite/objc/execute/enumeration-1.m50
1 files changed, 50 insertions, 0 deletions
diff --git a/gcc-4.9/gcc/testsuite/objc/execute/enumeration-1.m b/gcc-4.9/gcc/testsuite/objc/execute/enumeration-1.m
new file mode 100644
index 000000000..c380291b5
--- /dev/null
+++ b/gcc-4.9/gcc/testsuite/objc/execute/enumeration-1.m
@@ -0,0 +1,50 @@
+/* Contributed by Nicola Pero - Wed Dec 5 17:12:40 GMT 2001 */
+#include <stdlib.h>
+#import "../../objc-obj-c++-shared/TestsuiteObject.m"
+
+/* Test using a bitfield enumeration ivar. */
+
+typedef enum
+{
+ black,
+ white
+} color;
+
+@interface TestClass: TestsuiteObject
+{
+ 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;
+}
+