PR2731: C and Ocaml bindings for setTailCall and isTailCall.
[oota-llvm.git] / test / LLVMC / together.cpp
1 // Check that we can compile files of different types together.
2 // RUN: llvmc2 %s %p/test_data/together.c -o %t
3 // RUN: ./%t | grep hello
4
5 extern "C" void test();
6
7 int main() {
8   test();
9 }