aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/overload/unknown1.C
blob: 128c4344fede4e2f0427884dba9165d0825f8a72 (plain)
1
2
3
4
5
6
7
8
9
10
// { 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 *-*-* } 8 }
}