We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Option::expect
1 parent a5cc4cb commit 060cc37Copy full SHA for 060cc37
compiler/rustc_mir_build/src/thir/pattern/mod.rs
@@ -59,8 +59,9 @@ pub(super) fn pat_from_hir<'a, 'tcx>(
59
};
60
let result = pcx.lower_pattern(pat);
61
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");
+ if let Some(info) = migration_info
+ && let Some(sugg) = pcx.rust_2024_migration_suggestion
64
+ {
65
let mut spans =
66
MultiSpan::from_spans(info.primary_labels.iter().map(|(span, _)| *span).collect());
67
for (span, label) in &info.primary_labels {
0 commit comments