// RUN: %clangxx_asan %stdcxx11 -O0 -fsanitize-address-use-after-scope %s -o %t // RUN: not %run %t 0 2>&1 | FileCheck %s // RUN: not %run %t 1 2>&1 | FileCheck %s // RUN: not %run %t 2 2>&1 | FileCheck %s // RUN: not %run %t 3 2>&1 | FileCheck %s // RUN: not %run %t 4 2>&1 | FileCheck %s // RUN: not %run %t 5 2>&1 | FileCheck %s // RUN: not %run %t 6 2>&1 | FileCheck %s // RUN: not %run %t 7 2>&1 | FileCheck %s // RUN: not %run %t 8 2>&1 | FileCheck %s // RUN: not %run %t 9 2>&1 | FileCheck %s // RUN: not %run %t 10 2>&1 | FileCheck %s #include #include #include template struct Ptr { void Store(T *ptr) { t = ptr; } void Access() { *t = {}; } T *t; }; template struct Ptr { using Type = T[N]; void Store(Type *ptr) { t = *ptr; } void Access() { *t = {}; } T *t; }; template __attribute__((noinline)) void test() { Ptr ptr; { T x; ptr.Store(&x); } ptr.Access(); // CHECK: ERROR: AddressSanitizer: stack-use-after-scope // CHECK: #{{[0-9]+}} 0x{{.*}} in {{(void )?test.*\((void)?\) .*}}use-after-scope-types.cc // CHECK: Address 0x{{.*}} is located in stack of thread T{{.*}} at offset [[OFFSET:[^ ]+]] in frame // {{\[}}[[OFFSET]], {{[0-9]+}}) 'x' } int main(int argc, char **argv) { using Tests = void (*)(); Tests tests[] = { &test, &test, &test, &test, &test, &test, &test>, &test, &test, &test, &test, }; int n = atoi(argv[1]); if (n == sizeof(tests) / sizeof(tests[0])) { for (auto te : tests) te(); } else { tests[n](); } return 0; }