Add support for mir::TerminatorKind::TailCall
in clippy
This commit is contained in:
parent
244007566a
commit
791ff40337
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user