about summary refs log tree commit diff homepage
path: root/test/regression/2007-10-11-free-of-alloca.c
blob: 71a16f6b17589ee5832af03f34426d14c689d2ab (plain) (blame)
1
2
3
4
5
6
7
8
9
// RUN: %llvmgcc %s -emit-llvm -O0 -c -o %t1.bc
// RUN: %klee %t1.bc
// RUN: test -f klee-last/test000001.free.err

int main() {
  int buf[4];
  free(buf); // this should give runtime error, not crash
  return 0;
}