1 2 3 4 5 6 7 8 9 10 11 12 13
// { dg-do assemble } template <class T> void f (T); // { dg-message "note" } void g (); void g (int); int main () { f (g); // { dg-error "" } ambiguous unification // { dg-message "candidate" "candidate note" { target *-*-* } 10 } return 0; }