(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
expr/
bitfield1.C
// PR c++/27505

struct s {
  bool field:8;
};

void
foo (struct s *p)
{
  if (!p->field)
    ;
}