1 // RUN: %clangxx_asan -O1 %s -o %t && not %run %t 2>&1 | FileCheck %s
7 const IntHolder
*saved
;
9 __attribute__((noinline
)) void save(const IntHolder
&holder
) {
13 int main(int argc
, char *argv
[]) {
15 int x
= saved
->val
; // BOOM
16 // CHECK: ERROR: AddressSanitizer: stack-use-after-scope
17 // CHECK: #0 0x{{.*}} in main {{.*}}use-after-scope-temp.cpp:[[@LINE-2]]