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>
6int main(int argc, char *argv[]) {
7 std::cout << "Hello, world!" << std::endl;
8 return 0;
9}
10

source code of compiler-rt/test/orc/TestCases/Windows/x86-64/hello-world.cpp