Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
toolchain
/
llvm-project
/
1895e58c84ac95d563345b372b3a8e600b27d50a
/
.
/
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