mirror of
https://github.com/opnsense/src.git
synced 2026-06-04 22:32:43 -04:00
9 lines
195 B
C++
9 lines
195 B
C++
// 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
|
|
|
|
extern "C" void test();
|
|
|
|
int main() {
|
|
test();
|
|
}
|