Another little test for C++ [over.over]

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@75151 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Douglas Gregor 2009-07-09 17:44:05 +00:00
Родитель 5eda81624f
Коммит 0d5dc8e231
1 изменённых файлов: 10 добавлений и 0 удалений

Просмотреть файл

@ -0,0 +1,10 @@
// RUN: clang-cc -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!
}