зеркало из https://github.com/microsoft/clang-1.git
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:
Родитель
5eda81624f
Коммит
0d5dc8e231
|
@ -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!
|
||||
}
|
Загрузка…
Ссылка в новой задаче