aboutsummaryrefslogtreecommitdiffstats
path: root/test/LLVMC/C++/together.cpp
blob: 925215a4db51623053b262c91fb5159765f98faf (plain)
1
2
3
4
5
6
7
8
9
10
// Check that we can compile files of different types together.
// RUN: llvmc %s %p/../test_data/together.c -o %t
// RUN: %abs_tmp | grep hello
// XFAIL: vg

extern "C" void test();

int main() {
  test();
}