* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / refinit1.C
blobe120078e56c586de857c3b186e82192e3b658044
1 // { dg-do assemble  }
2 // Test that we don't allow multiple user-defined conversions in reference
3 // initialization.
5 struct B { };
7 struct A {
8   A (const B&);
9 };
11 struct C {
12   operator B ();
15 C c;
17 const A& ref (c);               // { dg-error "" } requires two UDCs