blob: 7358cbab826b8a008e35b487e669190414c6e8c4 [file] [log] [blame]
Stephen Hines2d1fdb22014-05-28 23:58:16 -07001// RUN: %clangxx_asan -O0 %s -Fe%t
2// RUN: not %run %t 2>&1 | FileCheck %s
3
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()-ed
10// CHECK: {{#0 0x.* operator delete }}
11// CHECK: {{#1 .* main .*operator_delete_wrong_argument.cc}}:[[@LINE-3]]
12}