2008-05-06 17:24:54 +00:00
|
|
|
// Check that we can compile files of different types together.
|
2008-11-25 21:38:12 +00:00
|
|
|
// RUN: llvmc %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();
|
|
|
|
}
|