Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
toolchain
/
llvm-project
/
a908e7fcccf038abcb665be9192a71a7ec0b8394
/
.
/
clang
/
test
/
Sema
/
implicit-builtin-redecl.c
blob: 837f79f4ef6120582d66b4360f6248633bcbaac6 [
file
] [
log
] [
blame
]
Douglas Gregor
a908e7f
2009-02-17 03:23:10 +0000
[
diff
] [
blame^
]
1
// RUN: clang -fsyntax-only -verify %s
2
3
// PR3592
4
static
void
*
malloc
(
int
);
5
static
void
*
malloc
(
int
size
)
{
6
return
((
void
*)
0
);
/*do not use heap in this file*/
7
}