blob: 3f30337c2dbb0d6d7e72d4db2d216fd4f5d4c28e [file] [log] [blame]
// PR c++/30274
struct S {
bool x : 4;
};
S s;
void f() {
s.x--; // { dg-error "use of an operand of type .bool." }
--s.x; // { dg-error "use of an operand of type .bool." }
}