Sign in
llvm
/
llvm-project
/
refs/heads/revert-133052-add-loop-bitconvert-tests
/
.
/
compiler-rt
/
test
/
asan
/
TestCases
/
shadowed-stack-serialization.cpp
blob: 4018c097aed5aa79c0251516c0b36d78d67e42fe [
file
] [
log
] [
blame
]
// RUN: %clangxx_asan -O0 %s -o %t
// RUN: not %run %t 2>&1 | FileCheck %s
int
main
()
{
int
x
;
{
int
x
;
delete
&
x
;
// CHECK: {{.*}}) 'x' (line [[@LINE-2]])
}
}