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

int buf[4];

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