2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.mike / misc9.C
blob0af57838223b77a45322937cbd2386132353e7be
1 // { dg-do assemble  }
2 // { dg-options "-Wall -pedantic" }
3 // GROUPS passed qualifiers
4 class bee {
5  public:
6   int bee::bar;         // { dg-warning "" } there is an extra bee:: here
7 };
9 class foo {
10  public:
11   int bee::bar;         // { dg-error "" } you cannot do this
12     int me();