compare.c revision d28f815705497f23c2747d61b7834f2d7ea78283
1// RUN: clang -parse-ast-check %s
2
3int test(char *C) { // nothing here should warn.
4  return C != ((void*)0);
5  return C != (void*)0;
6  return C != 0;
7}
8
9