[C++ PATCH] Deprecate -ffriend-injection
[official-gcc.git] / gcc / testsuite / g++.dg / lto / 20081120-2_0.C
blob3efe26c0197d0a55ab36d96a22f7d93ffa10570f
1 // { dg-lto-do link }
2 // { dg-lto-options {{-flto -r -nostdlib}} }
3 template < typename > struct Foo
5  inline void rdstate() {
6  }
7 };
9 extern template struct Foo<int>;
11 struct Bar:virtual public Foo<int>