[clang-format] Fix a bug in aligning comments above PPDirective (#72791)
[llvm-project.git] / clang / utils / perf-training / cxx / hello_world.cpp
blobfc9f6892eb7405c4f6545f1efe38d387863d0d9f
1 // RUN: %clang_cpp -c %s
2 // RUN: %clang_cpp_skip_driver -Wall -pedantic -c %s
3 #include <iostream>
5 int main(int, char**) {
6 std::cout << "Hello, World!";
7 return 0;