blob: b8cd4dd206a30bf62cd8e6b2a7ac11b44037cc1d [file] [log] [blame]
// PR c++/70285
int a;
struct S
{
int i:8;
} b;
int
fn1 (bool x)
{
(&fn1 ? b.i : a) = 42;
return (&fn1 ? b.i : a);
}