aboutsummaryrefslogtreecommitdiff
path: root/test/Sema/compare.c
blob: 0aeeb30d735975b7a00cd2d87644177aa2a6ad32 (plain)
1
2
3
4
5
6
7
8
// 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;
}