Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
liveness
/
liveness-assign-imm-local-after-ret.rs
blob: 298181e5529d926b3c664cecdb6510e85cfa0e38 [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
#![
allow
(
unreachable_code
)]
//@ pretty-expanded FIXME #23616
#![
allow
(
dead_code
)]
fn
test
()
{
let
_v
:
isize
;
_v
=
1
;
return
;
_v
=
2
;
}
pub
fn
main
()
{
}