blob: ca700bf672b435f1b7f9c65e19d252be6b66c39a [file] [log] [blame]
// { dg-do assemble }
// try throwing template function name
template <class T> void f(T);
template <class T> void f(T) // { dg-warning "" }
{
}
void g()
{
throw &f; // { dg-error "" } insufficient contextual information
}