blob: 09f8d86379cbfc5e9f6eafcf253c2f0a1a5303ca [file] [log] [blame]
// 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();
}