2008-05-06 17:24:54 +00:00
|
|
|
// Check that we can compile files of different types together.
|
2008-05-06 18:16:20 +00:00
|
|
|
// RUN: llvmc2 %s %p/test_data/together.c -o %t
|
2008-05-06 17:24:54 +00:00
|
|
|
// RUN: ./%t | grep hello
|
|
|
|
|
|
|
|
extern "C" void test();
|
|
|
|
|
|
|
|
int main() {
|
|
|
|
test();
|
|
|
|
}
|