xref: /llvm-project/compiler-rt/test/asan/TestCases/Windows/stack_array_sanity.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   int subscript = 1;
8   char buffer[42];
9   buffer[subscript] = 42;
10   printf("OK\n");
11 // CHECK: OK
12 }
13