Home | History | Annotate | Download | only in cxx
      1 // RUN: %clang_cpp -c %s
      2 #include <iostream>
      3 
      4 int main(int, char**) {
      5   std::cout << "Hello, World!";
      6   return 0;
      7 }
      8