1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
// { dg-do assemble } // GROUPS passed ambiguity struct A { A (int); }; struct B { B (int); }; void myfunc (const A& t0); // { dg-message "note" } void myfunc (const B& t0); // { dg-message "note" } int main () { myfunc(1); // { dg-error "ambiguous" } // { dg-message "candidate" "candidate note" { target *-*-* } 16 } }