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