about summary refs log tree commit diff homepage
path: root/test/Feature/CallToUndefinedExternal.cpp
blob: 2f11f29d6c2af1e7691fd14dabf245c576b3ba12 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
// RUN: %llvmgcc %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;
}