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

13 lines
136 B
C

typedef struct s {
unsigned short a;
unsigned long b __attribute__ ((packed));
} s;
s t;
int main()
{
t.b = 0;
return 0;
}