blob: 0aeeb30d735975b7a00cd2d87644177aa2a6ad32 [file] [log] [blame]
Chris Lattnerd28f8152007-08-26 01:10:14 +00001// 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