2 // { dg-options "-fabi-version=0 -w" }
5 struct E2 : public E1 {};
6 struct E : public E1, public E2 {};
7 struct N : public E { virtual void f () {} };
9 struct X : virtual public N {
14 /* N should not be the primary base of X; it is not nearly empty. */
15 if ((void*)&x == (void*)(N*)&x)