blob: 84b5a3b484de88e418c45688371ea3c524e01a69 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
// RUN: %llvmgxx %s -emit-llvm -g -c -o %t1.bc
// RUN: %klee %t1.bc
// RUN: test -f klee-last/test000001.external.err
extern "C" void poof(void);
int main() {
poof();
return 0;
}
|