* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / rv-bitfield.C
blobce93a1614a6c59de73410afbf5ef2053f2940d98
1 // { dg-do compile { target c++11 } }
3 struct A
5   int i : 1;
6 };
8 int main()
10   A a;
11   static_cast<int&&>(a.i);