tree-flow-inline.h (get_addr_base_and_unit_offset_1): Handle BIT_FIELD_REF.
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.mike / misc9.C
blob3d8858cf64a248a348d6552bac5d2e4d7c7b9462
1 // { dg-do assemble  }
2 // { dg-options "-Wall -pedantic" }
3 // GROUPS passed qualifiers
4 class bee {
5  public:
6   int bee::bar;         // { dg-error "extra" } there is an extra bee:: here
7 };
9 class foo {
10  public:
11   int bee::bar;         // { dg-error "not derived" } you cannot do this
12     int me();