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