repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2014-01-30 Alangi Derick <alangiderick@gmail.com>
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
template
/
error46.C
blob
6cb085a182cfac40d61f25e9dd5efd1a1bf1a34a
1
// PR c++/51230
2
3
template<int> struct A {};
4
5
template<int N> void foo(A<N>, A<N>); // { dg-message "template" }
6
7
void bar()
8
{
9
foo(A<0>(), A<1>()); // { dg-error "no matching" }
10
}
11
// { dg-message "candidate|parameter 'N' ('0' and '1')" "" { target *-*-* } 9 }