// RUN: %clang %s -emit-llvm -g -c -o %t.bc // RUN: rm -rf %t.klee-out // RUN: %klee -kdalloc -kdalloc-quarantine=1 -output-dir=%t.klee-out %t.bc -exit-on-error >%t.output 2>&1 // RUN: FileCheck %s -input-file=%t.output #include #include int main() { void *ptr = malloc(8); free(ptr); // CHECK: use after free memset(ptr, 0, 8); return 0; }