2018-11-07 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / g++.dg / other / bitfield5.C
blobb8cd4dd206a30bf62cd8e6b2a7ac11b44037cc1d
1 // PR c++/70285
3 int a;
5 struct S
7   int i:8;
8 } b;
10 int
11 fn1 (bool x)
13   (&fn1 ? b.i : a) = 42;
14   return (&fn1 ? b.i : a);