2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.brendan / misc15.C
blob2c5f1ae03ac0430f95b21c8ac201155ed2219a17
1 // { dg-do assemble  }
2 // GROUPS passed miscellaneous-bugs
4 struct A {
5         int     aa;
6 };
7 struct B : public A {
8 };
9 struct C : public A {
11 struct D : public C, public B {
12         void fun() { C::aa = 10; }