We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
let _ =
1 parent 2ad8e1f commit 82e6750Copy full SHA for 82e6750
src/base.rs
@@ -819,6 +819,7 @@ fn codegen_stmt<'tcx>(
819
| StatementKind::Nop
820
| StatementKind::FakeRead(..)
821
| StatementKind::Retag { .. }
822
+ | StatementKind::PlaceMention(..)
823
| StatementKind::AscribeUserType(..) => {}
824
825
StatementKind::Coverage { .. } => fx.tcx.sess.fatal("-Zcoverage is unimplemented"),
src/constant.rs
@@ -529,6 +529,7 @@ pub(crate) fn mir_operand_get_const_val<'tcx>(
529
| StatementKind::StorageDead(_)
530
| StatementKind::Retag(_, _)
531
| StatementKind::AscribeUserType(_, _)
532
533
| StatementKind::Coverage(_)
534
| StatementKind::ConstEvalCounter
535
| StatementKind::Nop => {}
0 commit comments