blob: a001546fb55d64b0685e1f455c0528f365948ffe [file] [log] [blame]
Eric Christopher3883e662011-07-26 22:17:02 +00001// RUN: %clang_cc1 -emit-llvm %s -o /dev/null
2
3void foo()
4{
5 char *ap;
6 ap[1] == '-' && ap[2] == 0;
7}
8