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

18 lines
179 B
C

f()
{
long l2;
unsigned short us;
unsigned long ul;
short s2;
ul = us = l2 = s2 = -1;
return ul;
}
main()
{
if (f()!=(unsigned short)-1)
abort();
exit(0);
}