Sign in
llvm
/
clang
/
741e05796da92b46d4f7bcbee00702ff37df6489
/
.
/
utils
/
perf-training
/
cxx
/
hello_world.cpp
blob: fc9f6892eb7405c4f6545f1efe38d387863d0d9f [
file
] [
log
] [
blame
]
// RUN: %clang_cpp -c %s
// RUN: %clang_cpp_skip_driver -Wall -pedantic -c %s
#include
<iostream>
int
main
(
int
,
char
**)
{
std
::
cout
<<
"Hello, World!"
;
return
0
;
}