modernc.org/cc@v1.0.1/testdata/gcc-6.3.0/gcc/testsuite/gcc.c-torture/execute/packed-2.c (about) 1 typedef struct s { 2 unsigned short a; 3 unsigned long b __attribute__ ((packed)); 4 } s; 5 6 s t; 7 8 int main() 9 { 10 t.b = 0; 11 return 0; 12 }