Clean up some minor white space issues in trans-decl.c and trans-expr.c
[official-gcc.git] / gcc / testsuite / g++.dg / torture / pr41257.C
blob60cfc53397980c628f5832c1d23ffca8a761757b
1 /* { dg-do compile } */
3 struct A
5   virtual void foo();
6   virtual ~A();
7   int i;
8 };
10 struct B : virtual A {};
12 struct C : B
14   virtual void foo();
17 void bar()
19   C().foo();