Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
issues
/
issue-5521.rs
blob: 45896ae81284d7a19ee6e0eaf342e4c574cd38c0 [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
#![
allow
(
dead_code
)]
//@ aux-build:issue-5521.rs
extern
crate issue_5521
as
foo
;
fn
bar
(
a
:
foo
::
map
)
{
if
false
{
panic
!();
}
else
{
let
_b
=
&(*
a
)[&
2
];
}
}
fn
main
()
{}