[PR c++/84702] ICE with default tmpl arg of overload set
[official-gcc.git] / gcc / testsuite / g++.dg / lto / 20081204-1_0.C
blobb87006a6bad2f07d82c84e88f5781ff36a3c27f7
1 /* { dg-lto-do link } */
2 /* { dg-require-effective-target fpic } */
3 /* { dg-lto-options {{-flto -flto-partition=1to1 -fPIC -r -nostdlib}} } */
5 /* Tests for the absence during linking of:
6    lto1: error: type of '_ZTVN10__cxxabiv120__si_class_type_infoE' does
7          not match original declaration  */
9 struct Foo { virtual ~Foo(); };
10 namespace __cxxabiv1
12   struct __si_class_type_info: public Foo { };
13   struct Baz: public Foo { virtual void Func(); };
14   void Baz::Func() { }