Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
fp2-dev
/
platform
/
external
/
llvm
/
6f532a988e5c02fcb271fb65e9e7b83f0147d3f2
/
.
/
test
/
LLVMC
/
hello.cpp
blob: 27c89d66fa73fd488c425a876e937bd41017df03 [
file
] [
log
] [
blame
]
// Test that we can compile C++ code.
// RUN: llvmc %s -o %t
// RUN: ./%t | grep hello
#include
<iostream>
int
main
()
{
std
::
cout
<<
"hello"
<<
'\n'
;
}