[RISCV] Add RVVConstraint to SiFive custom matrix multiply instructions. (#124055)
[llvm-project.git] / compiler-rt / test / asan / TestCases / Windows / operator_delete_wrong_argument.cpp
blobf5be333a8db186678e0c9620971eac6aad7a5dd4
1 // RUN: %clang_cl_asan %Od %s %Fe%t
2 // RUN: not %run %t 2>&1 | FileCheck %s
4 #include <windows.h>
6 int 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.cpp}}:[[@LINE-3]]