blob: 700fae36294920de640825229962312cc2c27ea5 [file] [log] [blame]
// Bug: func is treated as an overloaded function when it isn't.
// Build don't link:
int *func () { return 0; }
void
test ()
{
*func; // gets bogus error - improper overloading
}