blob: f3d47417b286888fc33b89dfcfc1207bac15b19c [file] [log] [blame]
// PR c++/27505
struct s {
bool field:8;
};
void
foo (struct s *p)
{
if (!p->field)
;
}