ice990323-3.C   [plain text]


// Build don't link:
// try throwing overloaded function

void f(int)
{
}

void f(long)
{
}

void g()
{
	throw &f; // ERROR - insufficient contextual information
}