1
0
mirror of https://github.com/c64scene-ar/llvm-6502.git synced 2025-03-10 18:37:01 +00:00
2009-09-13 01:40:48 +00:00

10 lines
195 B
C++

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