* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git] / gcc / testsuite / g++.dg / lookup / pr80891-1.C
blob725ca190ae9b05638bf9e1f7f81277aa560ef35e
1 // PR c++/80891 part 1
2 // std::endl is found via two paths and most_specialized_instantiation
3 // gets confused.
5 namespace std {
6   struct A {
7     void operator<<(A(A));
8   };
9   template <typename _CharT, typename _Traits> _CharT endl(_Traits);
10   A a;
13 using std::endl;
15 void chi_squared_sample_sized()
17   using namespace std;
18   a << endl;