We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 45f2a1a commit 09dc10cCopy full SHA for 09dc10c
compiler/rustc_mir_transform/src/dest_prop.rs
@@ -581,10 +581,11 @@ impl WriteInfo {
581
| StatementKind::ConstEvalCounter
582
| StatementKind::Nop
583
| StatementKind::Coverage(_)
584
- | StatementKind::PlaceMention(_)
585
| StatementKind::StorageLive(_)
586
| StatementKind::StorageDead(_) => (),
587
- StatementKind::FakeRead(_) | StatementKind::AscribeUserType(_, _) => {
+ StatementKind::FakeRead(_)
+ | StatementKind::AscribeUserType(_, _)
588
+ | StatementKind::PlaceMention(_) => {
589
bug!("{:?} not found in this MIR phase", statement)
590
}
591
0 commit comments