(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
other/
error18.C
// PR c++/33208

struct A
{
  bool b;
};

void f(A a)
{
  a.b--; // { dg-error "5:use of an operand of type .bool." }
}