(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
other/
bitfield1.C
// { dg-options "-w" }

union u1 {
  char m1 : 16;
} x;

int main () {
  x.m1 = 256;
}