llvm-6502/test/LLVMC/together.cpp
2008-05-06 18:16:20 +00:00

10 lines
189 B
C++

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