about summary refs log tree commit diff homepage
path: root/test/regression/2007-08-08-free-zero.c
blob: 26df8e9997ecea65e4ab3a8db8c13a1dd464a83b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
// 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
// RUN: ls %t.klee-out | not grep *.err

#include <stdlib.h>

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