brintos

brintos / llvm-project-archived public Read only

0
0
Text · 169 B · fc9f689 Raw
9 lines · cpp
1// RUN: %clang_cpp -c %s2// RUN: %clang_cpp_skip_driver -Wall -pedantic -c %s3#include <iostream>4 5int main(int, char**) {6  std::cout << "Hello, World!";7  return 0;8}9