Hackfix and re-enable strtoull and wcstoull, see bug #3798.
[sdcc.git] / sdcc / support / regression / qct / 0104-shl.c
blob53c2fafc68a725cb4a6c06a85c47c0a324f3290c
2 int
3 main()
5 int x;
7 x = 1;
8 if ((x << 1) != 2)
9 return 1;
11 return 0;