diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/regression/2018-04-05-make-symbolic-null-name.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test/regression/2018-04-05-make-symbolic-null-name.c b/test/regression/2018-04-05-make-symbolic-null-name.c new file mode 100644 index 00000000..f352ab21 --- /dev/null +++ b/test/regression/2018-04-05-make-symbolic-null-name.c @@ -0,0 +1,9 @@ +// RUN: %llvmgcc %s -emit-llvm -g -c -o %t1.bc +// RUN: rm -rf %t.klee-out +// RUN: %klee --output-dir=%t.klee-out %t1.bc + +#include "klee/klee.h" + +int main(int argc, char * argv[]) { + int a = klee_int((void*)0); +} |