PR c/49859
[official-gcc.git] / gcc / testsuite / g++.dg / parse / error51.C
blobe599304b6d86dfcd678c7894d5f8c6c5b7bf037b
1 // PR c++/14283
3 struct A
4 {};
6 namespace N
7 {}
9 template <typename> struct C
11   typedef A::template INVALID<void> X0;  // { dg-error "23:'INVALID' in 'struct A' does not name a template type" }
12   typedef N::template INVALID<void> X1;  // { dg-error "23:'INVALID' in namespace 'N' does not name a template type" }