Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / g++.dg / warn / inline2.C
blob0f5f78af11c8bc9e8b5557c73e493819e2d79ada
1 // PR c++/21627
3 template<typename T>
4 struct TPL 
6   TPL (){}
7   ~TPL (){}
8   void method () {}
9 };
11 template <> TPL<int>::TPL ();
12 template <> TPL<int>::~TPL ();
13 template <> void TPL<int>::method ();
15 void Foo ()
17   TPL<int> i;
18   i.method ();