xref: /aosp_15_r20/external/clang/utils/perf-training/cxx/hello_world.cpp (revision 67e74705e28f6214e480b399dd47ea732279e315)
1 // RUN: %clang_cpp -c %s
2 // RUN: %clang_cpp_skip_driver -Wall -pedantic -c %s
3 #include <iostream>
4 
main(int,char **)5 int main(int, char**) {
6   std::cout << "Hello, World!";
7   return 0;
8 }
9