blob: 7f3f20ef92d8f6e7a27942e4c7b00b594db693c4 [file] [log] [blame]
// Build don't link:
// try throwing template function name
template <class T> void f(T);
template <class T> void f(T)
{
}
void g()
{
throw &f; // ERROR - insufficient contextual information
}