13 lines · cpp
1// RUN: %clang_cl_asan %Od %s %Fe%t2// RUN: %run %t | FileCheck %s3 4#include <windows.h>5#include <stdio.h>6 7int 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}13