blob: 25d7a9169b94ba64deef9ac382e7cefeced615c5 [file] [log] [blame]
Chris Lattner4045a8a2007-10-11 00:18:28 +00001// RUN: clang -fsyntax-only -verify %s
Chris Lattner22be8422007-08-26 01:10:14 +00002
3int test(char *C) { // nothing here should warn.
4 return C != ((void*)0);
5 return C != (void*)0;
6 return C != 0;
7}
8
Steve Naroffc33c0602007-08-27 04:08:11 +00009int equal(char *a, const char *b)
10{
11 return a == b;
12}