bolt/deps/llvm-18.1.8/clang/utils/perf-training/cxx/hello_world.cpp
2025-02-14 19:21:04 +01:00

8 lines
169 B
C++

// 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;
}