]> git.proxmox.com Git - rustc.git/blob - src/libcompiler_builtins/compiler-rt/test/asan/TestCases/Windows/global_const_string.cc
New upstream version 1.20.0+dfsg1
[rustc.git] / src / libcompiler_builtins / compiler-rt / test / asan / TestCases / Windows / global_const_string.cc
1 // RUN: %clang_cl_asan -O0 %s -Fe%t
2 // RUN: %run %t | FileCheck %s
3
4 #include <windows.h>
5 #include <stdio.h>
6
7 int main(void) {
8 static const char *foo = "foobarspam";
9 printf("Global string is `%s`\n", foo);
10 // CHECK: Global string is `foobarspam`
11 return 0;
12 }