ice990323-4.C   [plain text]


// { 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
}