* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / overload1.C
blob8a833aa2a34efee6ab812f8201e36946252795ae
1 // { dg-do run  }
2 struct A {
3   A operator+ (int) const { return *this; }
4 };
6 A operator+ (A, float);
8 int main ()
10   A a;
11   a + 1;