blob: 97df1937524608ac79e5c64560efbb393ce345e2 [file] [log] [blame]
Mikhail Glushenkoved205692008-05-06 17:24:54 +00001// Check that we can compile files of different types together.
Mikhail Glushenkov49254b52008-05-06 18:10:20 +00002// RUN: llvmc2 %s %p/together.c -o %t
Mikhail Glushenkoved205692008-05-06 17:24:54 +00003// RUN: ./%t | grep hello
4
5extern "C" void test();
6
7int main() {
8 test();
9}