(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.c-torture/
compile/
pr31541.c
       1  typedef unsigned char Uchar;
       2  struct scsi_mode_header {
       3   unsigned char sense_data_len : 8;
       4  };
       5  int f(void)
       6  {
       7   struct scsi_mode_header md;
       8  return *(Uchar*)&md;
       9  }