forked from OSchip/llvm-project
13 lines
199 B
C++
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
|
||
|
}
|