* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git] / gcc / testsuite / g++.dg / lookup / name-clash2.C
blobc200eeebd33e6c3b583c68c35d6514ed355a9a85
1 // { dg-do compile }
3 // Origin: Sven Bilke <bilkes@mail.nih.gov>
4 // PR c++/9777
6 struct A
8     struct X {};
9     struct Y { void X(); };
12 struct B : A
14     struct Y : A::Y {};
15     struct X : A::X {};