1// RUN: %clangxx_asan -O0 %s -o %t2// RUN: not %run %t 2>&1 | FileCheck %s3 4int main() {5 int x;6 {7 int x;8 delete &x;9 // CHECK: {{.*}}) 'x' (line [[@LINE-2]])10 }11}12 13