* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git] / gcc / testsuite / g++.dg / lookup / using54.C
blob680bdadaa26ee620e1b80649cfa67510a57084c0
1 // PR c++/60894
3 struct B
5   struct S {};
6 };
8 struct D : B
10   using B::S;
11   void doIt(struct S&);
14 void D::doIt(struct S&)