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