git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@42091 91177308-0d34-0410...
[oota-llvm.git] / test / CFrontend / 2003-08-20-BadBitfieldRef.c
1 // RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null
2
3 void foo()
4 {
5   char *ap;
6   ap[1] == '-' && ap[2] == 0;
7 }
8