llvm-6502/test/LLVMC/C++/together.cpp
2009-09-13 01:39:08 +00:00

10 lines
191 B
C++

// Check that we can compile files of different types together.
// RUN: llvmc %s %p/../test_data/together.c -o %t
// RUN: ./%t | grep hello
extern "C" void test();
int main() {
test();
}