xref: /llvm-project/compiler-rt/test/asan/TestCases/Windows/hello_world.cpp (revision 3c1aa20c63548c77ddce3dabc7b25c7c7edccaac)
1 // RUN: %clang_cl_asan %Od %s %Fe%t
2 // RUN: %run %t | FileCheck %s
3 
4 #include <stdio.h>
5 
main()6 int main() {
7   printf("Hello, world!\n");
8 // CHECK: Hello, world!
9 }
10