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