* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git] / gcc / testsuite / g++.dg / lookup / using52.C
blobbf2620714e898d59f57ba7e4281d9e62500b112b
1 // { dg-do compile }
2 // PR c++/52645
4 class A
6 protected:
7   struct B {};
8 };
10 class C : A
12 protected:
13   using A::B;
15   struct D : public B {};