summaryrefslogtreecommitdiffstats
path: root/compiler-rt/test/asan/TestCases/Windows/operator_delete_wrong_argument.cpp
blob: d8891859fb5193d89819b6f9d53eaccd2d59e100 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// RUN: %clang_cl_asan -Od %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.cpp}}:[[@LINE-3]]
}
OpenPOWER on IntegriCloud