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
Merge from mainline.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
template
/
koenig1.C
blob
850d38828241dc3155879a4779e2603f92a1204d
1
namespace NS {
2
struct C {};
3
void foo(C);
4
}
5
6
template <class T> void bar() { T t; foo (t); }
7
8
template void bar<NS::C> ();