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
Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git]
/
old-autovect-branch
/
gcc
/
testsuite
/
g++.old-deja
/
g++.jason
/
template9.C
blob
7a12ebf4a83c44955f9b43603ba8bc3a55ca7d44
1
// { dg-do assemble }
2
// PRMS Id: 4864
3
// Bug: g++ can't deal with a guiding declaration which comes before the
4
// template.
5
6
void f (const int&, const int&);
7
template <class T> void f (const T&, const T&) { }
8
9
void g (int a)
10
{
11
f (a,a); // { dg-bogus "" } two identical candidates
12
}