blob: 5492b536b43da2aee3ad41e63e92163e0060fc06 [file] [log] [blame]
// 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 {};
};