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
Rebase.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.old-deja
/
g++.robertl
/
ice990323-4.C
blob
4332e0fcec41a4bc5b6063218fb1bf37a96a5cba
1
// { dg-do assemble }
2
// try throwing template function name
3
4
template <class T> void f(T);
5
6
template <class T> void f(T)
7
{
8
}
9
10
void g()
11
{
12
throw &f; // { dg-error "" } insufficient contextual information
13
}