OSDN Git Service

PR c++/9335
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / crash70.C
1 // PR c++/32113
2
3 template<int> struct A;
4
5 template<typename T> void foo (A<&T::template i>); // { dg-error "not a template" }
6
7 template void foo<A<0> > (A<0>); // { dg-error "does not match" }