Sign in
cobalt
/
cobalt
/
ac9ac065c5083565917b15e7a672a79599f2f00b
/
.
/
src
/
third_party
/
llvm-project
/
clang
/
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
;
}