* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git] / gcc / testsuite / g++.dg / lookup / disamb1.C
blob7585a32e1e279bf5b6b2a1e04325318f02f0f9a5
1 // PR c++/525
2 // Bug: With -pedantic, we weren't converting this to B1* for the call.
4 struct A
6   void f();
7 };
9 struct B1: public A {};
10 struct B2: public A {};
12 struct C: public B1, public B2
14   void g() { B1::f(); }