1 // { dg-options "-w" }
2 
3 union u1 {
4   char m1 : 16;
5 } x;
6 
main()7 int main () {
8   x.m1 = 256;
9 }
10