Sync usage with man page.
[netbsd-mini2440.git] / gnu / dist / gcc4 / gcc / testsuite / g++.dg / template / crash70.C
blob742f77b222522385f8cb4bd76fa97fac32e58036
1 // PR c++/32113
3 template<int> struct A;
5 template<typename T> void foo (A<&T::template i>); // { dg-error "not a template" }
7 template void foo<A<0> > (A<0>); // { dg-error "does not match" }