xref: /llvm-project/compiler-rt/test/orc/TestCases/Windows/x86-64/hello-world.cpp (revision 73c4033987c5ca6cf8022f840f3c42e3324da1cb)
1 // RUN: %clang_cl -MD -c -o %t %s
2 // RUN: %llvm_jitlink %t 2>&1 | FileCheck %s
3 // CHECK: Hello, world!
4 
5 #include <iostream>
main(int argc,char * argv[])6 int main(int argc, char *argv[]) {
7   std::cout << "Hello, world!" << std::endl;
8   return 0;
9 }
10