blob: b4b5c1c48d90f2a0fcd5e157e309c17dab1ce2fc [file] [log] [blame]
// { dg-do compile }
void foo(void);
int foo(int);
template <typename T> void bar(T f); // { dg-message "note" }
void baz() {
bar(foo); // { dg-error "<unresolved overloaded function type>" }
// { dg-message "(candidate|deduce template parameter)" "candidate note" { target *-*-* } .-1 }
}