We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cf337d1 commit b6e9d06Copy full SHA for b6e9d06
compiler/rustc_passes/src/dead.rs
@@ -134,6 +134,7 @@ impl<'tcx> MarkSymbolVisitor<'tcx> {
134
}
135
136
137
+ #[allow(dead_code)] // FIXME(81658): should be used + lint reinstated after #83171 relands.
138
fn handle_assign(&mut self, expr: &'tcx hir::Expr<'tcx>) {
139
if self
140
.typeck_results()
@@ -150,6 +151,7 @@ impl<'tcx> MarkSymbolVisitor<'tcx> {
150
151
152
153
154
155
fn check_for_self_assign(&mut self, assign: &'tcx hir::Expr<'tcx>) {
156
fn check_for_self_assign_helper(
157
tcx: TyCtxt<'tcx>,
0 commit comments