Hackfix and re-enable strtoull and wcstoull, see bug #3798.
[sdcc.git] / sdcc / support / regression / qct / 0037-assignop.c
blobdf5cb8909f96a616a26c35a9714aef510d425848
2 int
3 main()
5 int x;
7 x = 0;
8 x += 2;
9 x += 2;
10 if (x != 4)
11 return 1;
12 x -= 3;
13 if (x != 1)
14 return 2;
16 return 0;