blob: 7b856e9e8b872601857cf200a7ff6c2c435326e9 [file] [log] [blame]
// PR c++/30274
struct S {
bool x : 4;
};
S s;
void f() {
s.x--; // { dg-error "bool" }
--s.x; // { dg-error "bool" }
}