You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
…050, r=alexcrichton
Rename test locals to work around LLDB bug
LLDB's expression parser can't unambiguously resolve local variables in
some cases, as described in rust-lang#47938. Work around this by using names that
don't shadow direct submodules of `core`.
Closesrust-lang#64050.
…050, r=alexcrichton
Rename test locals to work around LLDB bug
LLDB's expression parser can't unambiguously resolve local variables in
some cases, as described in rust-lang#47938. Work around this by using names that
don't shadow direct submodules of `core`.
Closesrust-lang#64050.
On a fresh clone (b314654) of the
rust
repro, using LLVM/clang/lldb 8.0.0, thedebuginfo/boxed-struct
test fails due to #47938.As noted in my comment there, the cause is the local variable
unique
shadowingcore::unique
.This can be fixed by renaming the local variable
unique
intest/debuginfo/boxed-struct.rs
.Output dump:
I am invoking it via:
My OS is x86-64 Linux 4.19.
The text was updated successfully, but these errors were encountered: