OSDN Git Service

PR c++/54858
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / pseudodtor6.C
1 // PR c++/47971
2
3 template <typename> struct S
4 {
5   typedef double T;
6   S () { T ().~T (); }
7 };
8
9 S<double> s;