blob: 6f3d404e919b760a29f97aea9cd996dc611b1788 [file] [log] [blame]
// RUN: %clangxx_asan -O1 -fsanitize-address-use-after-scope %s -o %t && \
// RUN: not %run %t 2>&1 | FileCheck %s
//
// Not expected to work yet with HWAsan.
// XFAIL: *
int *p[3];
int main() {
for (int i = 0; i < 3; i++) {
int x;
p[i] = &x;
}
return **p; // BOOM
// CHECK: ERROR: AddressSanitizer: stack-use-after-scope
// CHECK: #0 0x{{.*}} in main {{.*}}.cpp:[[@LINE-2]]
}