blob: 77560b338651384e4b0312b69b8971d92a91d2c5 [file] [log] [blame]
// Bug: g++ does overloading on a function-by-function basis.
void
f ()
{
void (*fp)(void);
{
extern void g ();
}
fp = g; /* ERROR - no 'g' in scope */
}