Sink llvm-gcc dependent tests into distinct subdirs.
[oota-llvm.git] / test / LLVMC / C++ / together.cpp
1 // Check that we can compile files of different types together.
2 // RUN: llvmc %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 }