aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/constexpr-bitfield.C
blob: a50ac36362062c23ae096322fd6d9853c4b0e0e6 (plain)
1
2
3
4
5
6
7
8
9
10
// PR c++/46369
// { dg-do compile { target c++11 } }

struct A
{
  unsigned i : 1;
};

constexpr A f() { return { 1 }; }
constexpr bool b = (f().i == 1);