Skip to content

Commit 060cc37

Browse files
committed
peace of mind: remove a call to Option::expect
1 parent a5cc4cb commit 060cc37

File tree

1 file changed

+3
-2
lines changed
  • compiler/rustc_mir_build/src/thir/pattern

1 file changed

+3
-2
lines changed

compiler/rustc_mir_build/src/thir/pattern/mod.rs

+3-2
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,9 @@ pub(super) fn pat_from_hir<'a, 'tcx>(
5959
};
6060
let result = pcx.lower_pattern(pat);
6161
debug!("pat_from_hir({:?}) = {:?}", pat, result);
62-
if let Some(info) = migration_info {
63-
let sugg = pcx.rust_2024_migration_suggestion.expect("suggestion should be present");
62+
if let Some(info) = migration_info
63+
&& let Some(sugg) = pcx.rust_2024_migration_suggestion
64+
{
6465
let mut spans =
6566
MultiSpan::from_spans(info.primary_labels.iter().map(|(span, _)| *span).collect());
6667
for (span, label) in &info.primary_labels {

0 commit comments

Comments
 (0)