2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / nested2.C
blob9e2225642ca65ccc7141374f038b07f22cad3e92
1 // { dg-do assemble  }
2 // by Bert Bril <bert@dgb.nl>
4 struct M1 {
5     struct I                            {};
6 };
7  
8 struct M2 {
9     struct I                            {};
10     struct J : virtual public M2::I,
11                virtual public M1::I     {};