Sign in
fuchsia
/
third_party
/
rust
/
0ba9db87e61adcfd9a978188f61c20d9b423a099
/
.
/
tests
/
mir-opt
/
issue_38669.rs
blob: 9da4c89bb12184970eff177dc6ced0b9dd727e04 [
file
] [
log
] [
blame
]
// skip-filecheck
// check that we don't StorageDead booleans before they are used
// EMIT_MIR issue_38669.main.SimplifyCfg-initial.after.mir
fn
main
()
{
let
mut
should_break
=
false
;
loop
{
if
should_break
{
break
;
}
should_break
=
true
;
}
}