17 lines · cpp
1// Check that we report delete on a memory that belongs to a global variable.2 3// RUN: %clangxx_asan -g %s -o %t && %env_asan_opts=alloc_dealloc_mismatch=1 not %run %t 2>&1 | FileCheck %s4 5#include <stdlib.h>6 7static volatile char *x;8char a[10];9 10int main() {11 x = &a[0];12 delete x;13}14 15// CHECK: AddressSanitizer: attempting free on address which was not malloc()-ed16// CHECK: is located 0 bytes inside of global variable 'a' defined in17