Merged revisions 208012,208018-208019,208021,208023-208030,208033,208037,208040-20804...
[official-gcc.git] / main / gcc / testsuite / g++.dg / cpp0x / constexpr-bitfield.C
bloba50ac36362062c23ae096322fd6d9853c4b0e0e6
1 // PR c++/46369
2 // { dg-do compile { target c++11 } }
4 struct A
6   unsigned i : 1;
7 };
9 constexpr A f() { return { 1 }; }
10 constexpr bool b = (f().i == 1);