1
Fork 0

format err

This commit is contained in:
ouz-a 2022-04-17 17:11:54 +03:00
parent 2d2c5e118a
commit 831ebfc961

View file

@ -174,9 +174,7 @@ impl<'tcx> MirPatch<'tcx> {
for target in terminator_targets.iter().rev() { for target in terminator_targets.iter().rev() {
let stmt = statements.pop().unwrap(); let stmt = statements.pop().unwrap();
body[*target] body[*target].statements.insert(0, stmt);
.statements
.insert(0, stmt);
} }
} }