brintos

brintos / llvm-project-archived public Read only

0
0
Text · 353 B · f5be333 Raw
13 lines · cpp
1// RUN: %clang_cl_asan %Od %s %Fe%t2// RUN: not %run %t 2>&1 | FileCheck %s3 4#include <windows.h>5 6int main() {7  int *x = new int[42];8  delete (x + 1);9// CHECK: AddressSanitizer: attempting free on address which was not malloc()-ed10// CHECK:   {{#0 0x.* operator delete}}11// CHECK:   {{#1 .* main .*operator_delete_wrong_argument.cpp}}:[[@LINE-3]]12}13