(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.c-torture/
execute/
packed-2.c
       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  }