We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0e46759 commit 66573b7Copy full SHA for 66573b7
compiler/rustc_lint/src/for_loops_over_fallibles.rs
@@ -62,6 +62,7 @@ impl<'tcx> LateLintPass<'tcx> for ForLoopsOverFallibles {
62
};
63
64
let (article, ty, var) = match adt.did() {
65
+ did if cx.tcx.is_diagnostic_item(sym::Option, did) && ref_mutability.is_some() => ("a", "Option", "Some"),
66
did if cx.tcx.is_diagnostic_item(sym::Option, did) => ("an", "Option", "Some"),
67
did if cx.tcx.is_diagnostic_item(sym::Result, did) => ("a", "Result", "Ok"),
68
_ => return,
0 commit comments