Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
toolchain
/
llvm-project
/
fc6ffa251398b01dae2aa4a1f49b021086aca573
/
.
/
clang
/
test
/
Sema
/
compare.c
blob: 0aeeb30d735975b7a00cd2d87644177aa2a6ad32 [
file
] [
log
] [
blame
]
Chris Lattner
1895e58
2007-08-26 01:10:14 +0000
[
diff
] [
blame
]
1
// RUN: clang -parse-ast-check %s
2
3
int
test
(
char
*
C
)
{
// nothing here should warn.
4
return
C
!=
((
void
*)
0
);
5
return
C
!=
(
void
*)
0
;
6
return
C
!=
0
;
7
}
8