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