1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
// PR c++/21627 template<typename T> struct TPL { TPL (){} ~TPL (){} void method () {} }; template <> TPL<int>::TPL (); template <> TPL<int>::~TPL (); template <> void TPL<int>::method (); void Foo () { TPL<int> i; i.method (); }