2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.dg / compat / break / bitfield5.h
blob6f7f012cc6be735a0431cebbab53f948e59bd0c7
1 struct A {
2 virtual void f();
3 int f1 : 1;
4 };
6 struct B : public A {
7 int f2 : 1;
8 int : 0;
9 int f3 : 4;
10 int f4 : 3;