blob: db3f89472c982378b4d1ab7859c3c5c40484b9d4 [file] [log] [blame]
// 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;
}
}