Merge from mainline (167278:168000).
[official-gcc/graphite-test-results.git] / gcc / testsuite / g++.dg / template / pseudodtor4.C
blob40178bf489d902d9f16eb733742af4f706341dcc
1 // PR c++/34068
2 // { dg-do compile }
4 template <typename> struct A
6   typedef int X;
7   A () { T (). ~X (); } // { dg-error "there are no arguments to|fpermissive|was not declared in this scope" }
8 };
10 A <int> a;