about summary refs log tree commit diff
path: root/compiler/rustc_lint/src/passes.rs
diff options
context:
space:
mode:
authorkadmin <julianknodt@gmail.com>2021-04-26 18:19:23 +0000
committerkadmin <julianknodt@gmail.com>2021-07-25 07:28:51 +0000
commit3605675bb1b4f1fb65f80585ded2b62aea15bf2c (patch)
treef03a517cc2797415e47ba0ddc1504e3cfd7c3618 /compiler/rustc_lint/src/passes.rs
parent417b098cfc493a9b803b4ffbf6b74fc4f8e76f3d (diff)
downloadrust-3605675bb1b4f1fb65f80585ded2b62aea15bf2c.tar.gz
rust-3605675bb1b4f1fb65f80585ded2b62aea15bf2c.zip
Add inferred args to typeck
Diffstat (limited to 'compiler/rustc_lint/src/passes.rs')
-rw-r--r--compiler/rustc_lint/src/passes.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/rustc_lint/src/passes.rs b/compiler/rustc_lint/src/passes.rs
index bbe17dcf4b7..2d047ac7a08 100644
--- a/compiler/rustc_lint/src/passes.rs
+++ b/compiler/rustc_lint/src/passes.rs
@@ -33,6 +33,7 @@ macro_rules! late_lint_methods {
             fn check_expr(a: &$hir hir::Expr<$hir>);
             fn check_expr_post(a: &$hir hir::Expr<$hir>);
             fn check_ty(a: &$hir hir::Ty<$hir>);
+            fn check_infer(a: &$hir hir::InferArg);
             fn check_generic_arg(a: &$hir hir::GenericArg<$hir>);
             fn check_generic_param(a: &$hir hir::GenericParam<$hir>);
             fn check_generics(a: &$hir hir::Generics<$hir>);