android13/external/clang/test/SemaCXX/no-implicit-builtin-decls.cpp

8 lines
176 B
C++
Raw Normal View History

2024-06-22 08:45:49 -04:00
// RUN: %clang_cc1 -fsyntax-only -verify %s
void f() {
void *p = malloc(sizeof(int) * 10); // expected-error{{use of undeclared identifier 'malloc'}}
}
int malloc(double);