(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.old-deja/
g++.jason/
rfg13.C
// { dg-do assemble  }
// Bug: g++ does overloading on a function-by-function basis.

void
f ()
{
  void (*fp)(void);
  {
    extern void g ();
  }
  fp = g;	/* { dg-error "" } no 'g' in scope */
}