[PR c++/84702] ICE with default tmpl arg of overload set
[official-gcc.git] / gcc / testsuite / g++.dg / template / pseudodtor6.C
blob4438b6ffb33b94233d30289e3aa50134d58aa9f7
1 // PR c++/47971
3 template <typename> struct S
5   typedef double T;
6   S () { T ().~T (); }
7 };
9 S<double> s;