blob: 935b04fde55c7e9ff4c0f1eac35841cee9b679a6 (
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: ls %T/klee-last | not grep *.err
#include <stdlib.h>
int main() {
free(0);
return 0;
}
|