1 typedef struct s {
2 	unsigned short a;
3 	unsigned long b __attribute__ ((packed));
4 } s;
5 
6 s t;
7 
main()8 int main()
9 {
10         t.b = 0;
11 	return 0;
12 }
13