repo.or.cz
/
llvm
/
stm8.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Land the long talked about "type system rewrite" patch. This
[llvm/stm8.git]
/
test
/
LLVMC
/
C++
/
hello.cpp
blob
8f38306e9e961c78438795b977218ffac0a8b1fb
1
// Test that we can compile C++ code.
2
// RUN: llvmc %s -o %t
3
// RUN: %abs_tmp | grep hello
4
// XFAIL: vg
5
#include <iostream>
6
7
int
main
() {
8
std
::
cout
<<
"hello"
<<
'
\n
'
;
9
}