[AArch64/arm] PR testsuite/85326 Avoid C++ tests when C++ compiler not present
[official-gcc.git] / gcc / testsuite / g++.dg / expr / bitfield1.C
blobf3d47417b286888fc33b89dfcfc1207bac15b19c
1 // PR c++/27505
3 struct s {
4   bool field:8;
5 };
7 void
8 foo (struct s *p)
10   if (!p->field)
11     ;