blob: 8a0df9403a0e09d28b5b454822b37327f3ac0a8c [file] [log] [blame]
Douglas Gregor0f4330c2009-02-14 00:37:42 +00001// RUN: clang -fsyntax-only -verify %s
2
3void f() {
4 void *p = malloc(sizeof(int) * 10); // expected-error{{no matching function for call to 'malloc'}}
5}
6
7int malloc(double);