• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Check that we can compile files of different types together.
2 // RUN: llvmc %s %p/../test_data/together.c -o %t
3 // RUN: %abs_tmp | grep hello
4 // XFAIL: vg
5 
6 extern "C" void test();
7 
main()8 int main() {
9   test();
10 }
11