2017-06-14 Paolo Carlini <paolo.carlini@oracle.com>
[official-gcc.git] / gcc / testsuite / g++.dg / template / crash33.C
blob059e328f436a97f544a916ad0b8ece2fdcb42abf
1 // PR c++/19253
3 namespace N {}
5 template<typename> struct A
7   A<typename N::X<int> > a; // { dg-error "" }
8 };