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

25 lines
211 B
C

extern void abort (void);
struct type
{
int *a;
int b:16;
unsigned int p:9;
} t;
unsigned int
foo ()
{
return t.p;
}
int
main (void)
{
t.p = 8;
if (foo (t) != 8)
abort ();
return 0;
}