llvm-for-llvmta/tools/clang/utils/perf-training/cxx/hello_world.cpp

9 lines
169 B
C++
Raw Permalink Normal View History

2022-04-25 13:02:35 +02:00
// 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;
}