summaryrefslogtreecommitdiff
path: root/05/main.c
diff options
context:
space:
mode:
authorpommicket <pommicket@gmail.com>2022-01-24 20:53:37 -0500
committerpommicket <pommicket@gmail.com>2022-01-24 20:53:37 -0500
commit049bd1440d888eff5fd9e2b9e64320fb83d2be29 (patch)
tree36a964b8044ab0ea973fe282ab3d90d841622c73 /05/main.c
parent150fbb9dd8d29199427e5f0318c11f21e713a5f7 (diff)
enums almost working
Diffstat (limited to '05/main.c')
-rw-r--r--05/main.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/05/main.c b/05/main.c
index fd2f3cd..7dc9a0a 100644
--- a/05/main.c
+++ b/05/main.c
@@ -4,3 +4,10 @@
} (*x)(void);
*/
typedef int Foo[(char)((unsigned char)0xff + (unsigned char)0xf02)];
+typedef enum {
+ HELLO,
+ THERE,
+ TEST = 1-3,
+ EEE
+} y;
+typedef int Bar[EEE];