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