8sa1-gcc/gcc/testsuite/g++.old-deja/g++.other/nested2.C
Jason Merrill 70123d8a97 update
From-SVN: r22767
1998-10-02 17:11:34 -04:00

13 lines
253 B
C

// Build don't link:
// by Bert Bril <bert@dgb.nl>
struct M1 {
struct I {};
};
struct M2 {
struct I {};
struct J : virtual public M2::I,
virtual public M1::I {};
};