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
/
non-dependent5.C
blob
bd6ce6b47588a489387cfab37cd619ad2a5fe730
1
// PR c++/15299
2
3
template <class T> void fun_ptr(T (*)());
4
template <class T> T bar();
5
6
template <class> void foo () {
7
fun_ptr(bar<int>);
8
}