[C++ PATCH] Deprecate -ffriend-injection
[official-gcc.git] / gcc / testsuite / g++.dg / lto / 20100724-1_0.C
blob084c07f0814d26d70f53acdd621e3e3aa3bb534b
1 /* { dg-lto-do link } */
2 /* { dg-lto-options {{-ftoplevel-reorder -flto -flto-partition=none} {-ftoplevel-reorder -flto -flto-partition=1to1}} } */
3 /* { dg-extra-ld-options {-r -nostdlib} } */
5 struct Foo { virtual ~Foo(); };
6 struct Bar:public Foo { Bar() { } };
7 void Func() { new Bar(); }