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
ada: Move special case for null string literal from frontend to backend
[official-gcc.git]
/
gcc
/
testsuite
/
g++.old-deja
/
g++.pt
/
overload4.C
blob
3dcb39704d7e056d0c41cc9e4f91626473936213
1
// { dg-do assemble }
2
3
template <class T> void foo(T);
4
5
template <class T> void bar(void (*)(T), T);
6
7
void baz() {
8
bar<int>(foo, 1);
9
bar(foo<int>, 1);
10
bar<int>(foo<int>, 1);
11
bar(foo, 1);
12
}