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