Skip to content

Commit c29dc12

Browse files
committed
fix clippy error
1 parent 0a97eee commit c29dc12

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tools/clippy/clippy_utils/src/qualify_min_const_fn.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ fn check_statement(tcx: TyCtxt<'tcx>, body: &Body<'tcx>, def_id: DefId, statemen
212212
check_rvalue(tcx, body, def_id, rval, span)
213213
}
214214

215-
StatementKind::FakeRead(_, place) |
215+
StatementKind::FakeRead(box (_, place)) => check_place(tcx, *place, span, body),
216216
// just an assignment
217217
StatementKind::SetDiscriminant { place, .. } => check_place(tcx, **place, span, body),
218218

0 commit comments

Comments
 (0)