зеркало из https://github.com/microsoft/clang-1.git
Add test case to insure that implicit builtin declarations for C library functions aren't created in C++
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@64513 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Родитель
a316e7b735
Коммит
0f4330c708
|
@ -0,0 +1,7 @@
|
|||
// RUN: clang -fsyntax-only -verify %s
|
||||
|
||||
void f() {
|
||||
void *p = malloc(sizeof(int) * 10); // expected-error{{no matching function for call to 'malloc'}}
|
||||
}
|
||||
|
||||
int malloc(double);
|
Загрузка…
Ссылка в новой задаче