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