Sign in
llvm
/
llvm-project
/
compiler-rt
/
40ff23934528ee149394e85a42c6949f9cf4a501
/
.
/
test
/
asan
/
TestCases
/
Windows
/
hello_world.cpp
blob: 507886e71acd3cd0ed811ee4d25c0865eace529e [
file
] [
log
] [
blame
]
// RUN: %clang_cl_asan %Od %s %Fe%t
// RUN: %run %t | FileCheck %s
#include
<stdio.h>
int
main
()
{
printf
(
"Hello, world!\n"
);
// CHECK: Hello, world!
}