Files
clang-p2996/compiler-rt/test/asan/TestCases/Windows/stack_array_sanity.cc
2014-05-15 12:09:45 +00:00

13 lines
199 B
C++

// RUN: %clangxx_asan -O0 %s -Fe%t
// RUN: %run %t | FileCheck %s
#include <stdio.h>
int main() {
int subscript = 1;
char buffer[42];
buffer[subscript] = 42;
printf("OK\n");
// CHECK: OK
}