2018-02-09 Sebastian Perta <sebastian.perta@renesas.com>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.brendan / enum13.C
blob0d06ff1cf2cec350879698d0f1b47aeaae7a9535
1 // { dg-do assemble  }
2 // GROUPS passed enums
3 enum COLOR { red, green, blue };
4  
5 struct S {
6     COLOR       color:2;
7 };
8  
9 COLOR color;
10 S object;
12 void fubar ()
14     color = object.color;