We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f191b80 commit e7d0deaCopy full SHA for e7d0dea
Cargo.toml
@@ -181,7 +181,6 @@ non_canonical_partial_ord_impl = "allow"
181
self_named_constructors = "allow"
182
too_many_arguments = "allow"
183
type_complexity = "allow"
184
-unnecessary_mut_passed = "allow"
185
useless_conversion = "allow"
186
useless_format = "allow"
187
wildcard_in_or_patterns = "allow"
crates/hir-ty/src/mir/lower/pattern_matching.rs
@@ -114,7 +114,7 @@ impl MirLowerCtx<'_> {
114
index: i as u32,
115
}))
116
}),
117
- &mut cond_place,
+ &cond_place,
118
mode,
119
)?
120
}
0 commit comments