mirror of
https://github.com/Cisco-Talos/clamav.git
synced 2026-02-07 13:31:36 -05:00
10 lines
188 B
C++
10 lines
188 B
C++
// Check that we can compile files of different types together.
|
|
// RUN: llvmc %s %p/test_data/together.c -o %t
|
|
// RUN: ./%t | grep hello
|
|
|
|
extern "C" void test();
|
|
|
|
int main() {
|
|
test();
|
|
}
|