PR c++/86728 - C variadic generic lambda.
[official-gcc.git] / gcc / testsuite / g++.dg / expr / bitfield3.C
blob3f30337c2dbb0d6d7e72d4db2d216fd4f5d4c28e
1 // PR c++/30274
3 struct S {
4   bool x : 4;
5 };
7 S s;
9 void f() {
10   s.x--; // { dg-error "use of an operand of type .bool." }
11   --s.x; // { dg-error "use of an operand of type .bool." }