OSDN Git Service

* parser.c (cp_parser_class_specifier): Set class location to that
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / enum3.C
1 // PR c++/17327
2
3 enum E { E0, E1 };
4 template <class T,class U> class A {};
5 template <class T> void f(A<E,T>) {}
6 // We used to issue a "sorry" message.  By using an explicit error
7 // message below, we make sure that we will not match "sorry".
8 template void f(A<int,E>); // { dg-error "template-id" }