Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
clang
/
6856c631cb15ec87cc92aad115a8fa6512612089
/
.
/
test
/
Sema
/
compare.c
blob: d4e29e8674fa3707a21ef2d23f46ef16963b260e [
file
] [
log
] [
blame
]
// RUN: clang -parse-ast-check %s
int
test
(
char
*
C
)
{
// nothing here should warn.
return
C
!=
((
void
*)
0
);
return
C
!=
(
void
*)
0
;
return
C
!=
0
;
}
int
equal
(
char
*
a
,
const
char
*
b
)
{
return
a
==
b
;
}