// RUN: %clang %s -emit-llvm %O0opt -c -o %t1.bc // RUN: rm -rf %t.klee-out // RUN: %klee --output-dir=%t.klee-out %t1.bc #include int main() { char i, x[3]; klee_make_symbolic(&i, sizeof i, "i"); x[0] = i; // DEMAND FAILED:Memory.cpp:read8:199: is false: "unflushed byte without cache value" char y = x[1]; return 0; }