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

20 lines
163 B
C

extern void abort (void);
struct
{
int b : 13;
} f;
void foo (short j)
{
f.b = j;
}
int main()
{
foo (-55);
if (f.b != -55)
abort ();
return 0;
}