1// RUN: %clang_cc1 -emit-llvm %s  -o /dev/null
2
3void foo()
4{
5  char *ap;
6  ap[1] == '-' && ap[2] == 0;
7}
8
9