xref: /openbsd-src/gnu/llvm/clang/utils/perf-training/cxx/hello_world.cpp (revision f6aab3d83b51b91c24247ad2c2573574de475a82)
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