Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
llvm
/
6f532a988e5c02fcb271fb65e9e7b83f0147d3f2
/
.
/
test
/
LLVMC
/
together.cpp
blob: b07250e9d0b3ead139816baa914a23fff8d7fa19 [
file
] [
log
] [
blame
]
// 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
();
}