summaryrefslogtreecommitdiffstats
path: root/test/CXX/over/over.over/p2.cpp
blob: 70c786b39520d750a7d602e48026bf7acb0bd39b (plain)
1
2
3
4
5
6
7
8
9
10
// RUN: %clang_cc1 -fsyntax-only -verify %s

template<typename T> T f0(T, T);

void test_f0() {
  int (*f0a)(int, int) = f0;
  int (*f0b)(int, int) = &f0;
  int (*f0c)(int, float) = f0; // expected-error{{incompatible type}}
  // FIXME: poor error message above!
}