about summary refs log tree commit diff homepage
path: root/test/regression/2007-08-08-free-zero.c
blob: 3718f3cfd32ed22957abcc3828db8fc9a247b3c0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
// RUN: %llvmgcc %s -emit-llvm -O0 -c -o %t1.bc
// RUN: rm -rf %t.klee-out
// RUN: %klee --output-dir=%t.klee-out %t1.bc
// RUN: ls %t.klee-out | not grep *.err

#include <stdlib.h>

int main() {
  free(0);
  return 0;
}