// PR c++/38597 // { dg-do compile { target c++11 } } template auto f(T,U) -> decltype(T() + U()) { return T() + U(); } template void g(T){} // { dg-message "note" } int main() { g(f); } // { dg-error "no matching function" } // { dg-message "(candidate|deduce template parameter)" "candidate note" { target *-*-* } 10 }