Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.old-deja / g++.jason / scoping.C
blobef167306986d6c96fca4678ea2eb82e5d3bf1713
1 // { dg-do assemble  }
2 // PRMS Id: 3977
3 // Bug: A member function is not hidden properly by a later use of its name.
5 struct A {
6   void index ();
7 };
9 struct B: A {
10   int index;
11   B(): index(4) {}