OSDN Git Service

* parser.c (cp_parser_class_specifier): Set class location to that
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / decl3.C
1 // c++/32560
2
3 namespace N {}
4
5 template<typename> struct A
6 {
7   int A<typename N::X>; // { dg-error "namespace|argument|before" }
8 };