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