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

struct A
{
  int i : 1;
};

int main()
{
  A a;
  static_cast<int&&>(a.i);
}