2018-11-07 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / g++.dg / lto / 20100423-2_0.C
blob2ab6bdc56efbc3b2a18472340fb2a2192a3afdb1
1 // { dg-lto-do assemble }
2 // { dg-lto-options {{-flto -g}} }
4 struct A
6   virtual ~A();
7 };
9 void foo()
11   struct B : A {};
12   B b;