blob: 842e6478f5bb1ac1093c179b1b7eadfa6b90311b [file] [log] [blame]
// Build don't link:
// try throwing overloaded function
void f(int)
{
}
void f(long)
{
}
void g()
{
throw &f; // ERROR - insufficient contextual information
}