blob: 837f79f4ef6120582d66b4360f6248633bcbaac6 [file] [log] [blame]
Douglas Gregor4d6b1022009-02-17 03:23:10 +00001// RUN: clang -fsyntax-only -verify %s
2
3// PR3592
4static void* malloc(int);
5static void* malloc(int size) {
6 return ((void*)0); /*do not use heap in this file*/
7}