* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git] / gcc / testsuite / g++.dg / lookup / pr70205.C
blob3bda7fb35ce0fe56b83464a4019299434f0a1ab4
1 // PR c++/70205
3 struct A
5 protected:
6   static void f ();
7 };
8 struct B : A { };
9 struct C : A { };
10 struct D : C, B { void a () { D::f (); } };
11 struct E : D { void b () { D::f (); } };