1// PR c++/27505
2
3struct s {
4  bool field:8;
5};
6
7void
8foo (struct s *p)
9{
10  if (!p->field)
11    ;
12}
13