2014-01-30 Alangi Derick <alangiderick@gmail.com>
[official-gcc.git] / gcc / testsuite / g++.dg / template / error46.C
blob6cb085a182cfac40d61f25e9dd5efd1a1bf1a34a
1 // PR c++/51230
3 template<int> struct A {}; 
5 template<int N> void foo(A<N>, A<N>); // { dg-message "template" }
7 void bar()
9   foo(A<0>(), A<1>()); // { dg-error "no matching" }
11 // { dg-message "candidate|parameter 'N' ('0' and '1')" "" { target *-*-* } 9 }