aboutsummaryrefslogtreecommitdiff
path: root/test/asan/TestCases/Windows/operator_delete_wrong_argument.cc
blob: c3e7daca55b01c2a78e18d6f72fb814fcd86ecdd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
// RUN: %clang_cl_asan -O0 %s -Fe%t
// RUN: not %run %t 2>&1 | FileCheck %s

#include <windows.h>

int main() {
  int *x = new int[42];
  delete (x + 1);
// CHECK: AddressSanitizer: attempting free on address which was not malloc()-ed
// CHECK:   {{#0 0x.* operator delete }}
// CHECK:   {{#1 .* main .*operator_delete_wrong_argument.cc}}:[[@LINE-3]]
}