blob: 05ddf116675cfef48a73092afbeda8837cec58de [file] [log] [blame]
// PR c++/33208
struct A
{
bool b;
};
void f(A a)
{
a.b--; // { dg-error "use of an operand of type .bool." }
}