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 5f4caae11c
commit 30b18d7c36
1 changed files with 2 additions and 1 deletions

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) {