Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.dg / template / enum3.C
blobb248d788c50e54c927a54658e169174034196c64
1 // PR c++/17327
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" }