Hackfix and re-enable strtoull and wcstoull, see bug #3798.
[sdcc.git] / sdcc / support / regression / qct / 0056-enum.c
blob2cb7b2aa771d284376ffbc95643668f11ec54c5d
2 enum E {
3 x,
4 y = 2,
5 z,
6 };
8 int
9 main()
11 enum E e;
13 if(x != 0)
14 return 1;
15 if(y != 2)
16 return 2;
17 if(z != 3)
18 return 3;
20 e = x;
21 return e;