enums almost working

This commit is contained in:
pommicket 2022-01-24 20:53:37 -05:00
parent 150fbb9dd8
commit 049bd1440d
5 changed files with 142 additions and 9 deletions

View file

@ -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];