* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git] / gcc / testsuite / g++.dg / lookup / using33.C
bloba80be036442574f9a99f09274c664c3e983c21d7
1 // { dg-do run }
3 template <class T>
4 struct Foo
6   int k (float) {return 0;}
7 };
9 template <class T>
10 struct Baz
12   int k (int) {return 1;}
15 template <class T>
16 struct Bar : Foo<T> , Baz<T>
18   using Foo<T>::k;
19   using Baz<T>::k;
22 int main()
24   Bar<int> bar;
25   return bar.k( 1.0f );