about summary refs log tree commit diff homepage
path: root/test/regression/2007-08-08-free-zero.c
blob: 192b2841413a290a24857afdb6f1bf44b44b632e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
// RUN: %llvmgcc %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;
}