(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.old-deja/
g++.jason/
scoping.C
// { dg-do assemble  }
// PRMS Id: 3977
// Bug: A member function is not hidden properly by a later use of its name.

struct A {
  void index ();
};

struct B: A {
  int index;
  B(): index(4) {}
};