xref: /aosp_15_r20/external/compiler-rt/test/asan/TestCases/Windows/hello_world.cc (revision 7c3d14c8b49c529e04be81a3ce6f5cc23712e4c6)
1 // RUN: %clang_cl_asan -O0 %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