Add support for mir::TerminatorKind::TailCall in clippy

This commit is contained in:
Maybe Waffle 2023-05-09 21:30:28 +00:00 committed by Maybe Lapkin
parent 244007566a
commit 791ff40337

View File

@ -330,7 +330,8 @@ fn check_terminator<'tcx>(
target: _,
unwind: _,
fn_span: _,
} => {
}
| TerminatorKind::TailCall { func, args, fn_span: _ } => {
let fn_ty = func.ty(body, tcx);
if let ty::FnDef(fn_def_id, _) = *fn_ty.kind() {
if !is_const_fn(tcx, fn_def_id, msrv) {