blob: 09f8d86379cbfc5e9f6eafcf253c2f0a1a5303ca (
plain)
1
2
3
4
5
6
7
8
9
|
// 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();
}
|