Sign in
fuchsia
/
third_party
/
rust
/
upstream/beta
/
.
/
tests
/
mir-opt
/
copy-prop
/
dead_stores_79191.rs
blob: 24420e19fa80db0967378a1a2f6e73448466c3e7 [
file
] [
log
] [
blame
]
// skip-filecheck
// EMIT_MIR_FOR_EACH_PANIC_STRATEGY
//@ test-mir-pass: CopyProp
fn
id
<
T
>(
x
:
T
)
->
T
{
x
}
// EMIT_MIR dead_stores_79191.f.CopyProp.after.mir
fn
f
(
mut
a
:
usize
)
->
usize
{
let
b
=
a
;
a
=
5
;
a
=
b
;
id
(
a
)
}
fn
main
()
{
f
(
0
);
}