repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Sync usage with man page.
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
g++.dg
/
template
/
explicit2.C
blob
79941cd8ed5ab5118fdbc791ed014f6d92c23085
1
struct X {
2
template <class B> void foo(B);
3
};
4
5
template <class D>
6
void bar() {
7
X().foo<D>(1);
8
}
9
10
template void bar<int> ();