blob: 6c579008849c6c63694a71c55208be761d495b62 [file] [log] [blame]
typedef struct s {
unsigned short a;
unsigned long b __attribute__ ((packed));
} s;
s t;
int main()
{
t.b = 0;
return 0;
}