blob: d82f7f18bffe0fed2736ed0b3e884f036d7a3119 [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s
Douglas Gregor0f4330c2009-02-14 00:37:42 +00002
3void f() {
John McCall578b69b2009-12-16 08:11:27 +00004 void *p = malloc(sizeof(int) * 10); // expected-error{{use of undeclared identifier 'malloc'}}
Douglas Gregor0f4330c2009-02-14 00:37:42 +00005}
6
7int malloc(double);