blob: b5d57e9c3c8d10f3aa59bc2d9f07f707edbfbce8 [file] [log] [blame]
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);
}