Skip to content
This repository was archived by the owner on May 28, 2025. It is now read-only.

Commit cd5d720

Browse files
Fix rebase fallout
1 parent 7af964f commit cd5d720

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

compiler/rustc_mir/src/transform/dest_prop.rs

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -588,11 +588,12 @@ impl Conflicts<'a> {
588588
}
589589

590590
StatementKind::SetDiscriminant { .. }
591-
| StatementKind::StorageLive(_)
592-
| StatementKind::StorageDead(_)
593-
| StatementKind::Retag(_, _)
594-
| StatementKind::FakeRead(_, _)
595-
| StatementKind::AscribeUserType(_, _)
591+
| StatementKind::StorageLive(..)
592+
| StatementKind::StorageDead(..)
593+
| StatementKind::Retag(..)
594+
| StatementKind::FakeRead(..)
595+
| StatementKind::AscribeUserType(..)
596+
| StatementKind::Coverage(..)
596597
| StatementKind::Nop => {}
597598
}
598599
}

0 commit comments

Comments
 (0)