tcc-65816/test/tests/921207-1.c
2017-06-09 13:52:12 +02:00

16 lines
118 B
C

f()
{
unsigned b = 0;
if (b > ~0U)
b = ~0U;
return b;
}
main()
{
if (f()!=0)
abort();
exit (0);
}