Skip to content

Commit 3f945bb

Browse files
committed
Auto merge of #134499 - jieyouxu:rollup-zmaveur, r=jieyouxu
Rollup of 7 pull requests Successful merges: - #133702 (Variants::Single: do not use invalid VariantIdx for uninhabited enums) - #134427 (ci: remove duplicate task definition) - #134432 (Fix intra doc links not generated inside footnote definitions) - #134437 (reduce compiler `Assemble` complexity) - #134474 (Forbid overwriting types in typeck) - #134477 (move lint_unused_mut into sub-fn) - #134491 (Some destructor/drop related tweaks) r? `@ghost` `@rustbot` modify labels: rollup
2 parents 52d7e45 + bb57b51 commit 3f945bb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/helpers.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -605,7 +605,7 @@ pub trait EvalContextExt<'tcx>: crate::MiriInterpCxExt<'tcx> {
605605
// `UnsafeCell` action.
606606
(self.unsafe_cell_action)(v)
607607
}
608-
Variants::Single { .. } => {
608+
Variants::Single { .. } | Variants::Empty => {
609609
// Proceed further, try to find where exactly that `UnsafeCell`
610610
// is hiding.
611611
self.walk_value(v)

0 commit comments

Comments
 (0)