ice990323-5.C   [plain text]


// Build don't link:
// check attempting to throw an overloaded function

struct A {
	void f(int);
	void f(long);
};

void g()
{
	throw &A::f; // ERROR - insufficient context
}