We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9df227c commit 7ea5e20Copy full SHA for 7ea5e20
clippy_lints/src/utils/author.rs
@@ -665,6 +665,10 @@ fn desugaring_name(des: hir::MatchSource) -> String {
665
"MatchSource::IfLetDesugar {{ contains_else_clause: {} }}",
666
contains_else_clause
667
),
668
+ hir::MatchSource::IfDesugar { contains_else_clause } => format!(
669
+ "MatchSource::IfDesugar {{ contains_else_clause: {} }}",
670
+ contains_else_clause
671
+ ),
672
hir::MatchSource::AwaitDesugar => "MatchSource::AwaitDesugar".to_string(),
673
}
674
0 commit comments