]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/g++.dg/compat/abi/bitfield1_y.C
2006-04-23 Mark Mitchell <mark@codesourcery.com>
[thirdparty/gcc.git] / gcc / testsuite / g++.dg / compat / abi / bitfield1_y.C
1 // { dg-options "-w -ansi -pedantic-errors -funsigned-bitfields" }
2
3 extern "C" void abort (void);
4
5 #include "bitfield1.h"
6
7 void bitfield1_y (A& a)
8 {
9 if (a.bitS != -1)
10 abort ();
11 if (a.bitU != 1)
12 abort ();
13 if (a.bit != 1)
14 abort ();
15 }