repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[CI][Github] Do not fail premerge job
[llvm-project.git]
/
lldb
/
test
/
API
/
iohandler
/
stdio
/
main.cpp
blob
d6da7d58165a3b8365eddf943d0d83a5d84032e3
1
#include <iostream>
2
#include <string>
3
4
int
main
(
int
argc
,
char
**
argv
) {
5
for
(
std
::
string line
;
std
::
getline
(
std
::
cin
,
line
);)
6
std
::
cout
<<
"stdout: "
<<
line
<<
'
\n
'
;
7
return
0
;
8
}