brintos

brintos / llvm-project-archived public Read only

0
0
Text · 180 B · 4018c09 Raw
13 lines · cpp
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