* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git] / gcc / testsuite / g++.dg / lookup / koenig2.C
blob04f95258999c12ee71c9ab8c6f65ad133933e6bb
1 struct S
3   template <typename T> void operator() (T) {}
4 };
6 namespace N
8   S s;
9   struct A {} a;
12 using N::s;
14 void f () { s(N::a); }