X-Git-Url: https://git.lizzy.rs/?a=blobdiff_plain;f=clippy_lints%2Fsrc%2Finherent_to_string.rs;h=9d7c3b46fed5678489f1e5206324f52c4a53f9f0;hb=5ac08b0cc94cab09fba719a17c141c68c4cbc063;hp=da2b72630a56e95bbe1573e59b1c96a0b918b4a2;hpb=a1137a84394ca2da3619091d7bf00867297daa2e;p=rust.git diff --git a/clippy_lints/src/inherent_to_string.rs b/clippy_lints/src/inherent_to_string.rs index da2b72630a5..9d7c3b46fed 100644 --- a/clippy_lints/src/inherent_to_string.rs +++ b/clippy_lints/src/inherent_to_string.rs @@ -1,7 +1,8 @@ use if_chain::if_chain; -use rustc::hir::{ImplItem, ImplItemKind}; +use rustc::declare_lint_pass; use rustc::lint::{LateContext, LateLintPass, LintArray, LintPass}; -use rustc::{declare_lint_pass, declare_tool_lint}; +use rustc_hir::{ImplItem, ImplItemKind}; +use rustc_session::declare_tool_lint; use crate::utils::{ get_trait_def_id, implements_trait, match_type, paths, return_ty, span_help_and_lint, trait_ref_of_method, @@ -87,13 +88,13 @@ /// ``` pub INHERENT_TO_STRING_SHADOW_DISPLAY, correctness, - "type implements inherent method `to_string()`, which gets shadowed by the implementation of the `Display` trait " + "type implements inherent method `to_string()`, which gets shadowed by the implementation of the `Display` trait" } declare_lint_pass!(InherentToString => [INHERENT_TO_STRING, INHERENT_TO_STRING_SHADOW_DISPLAY]); impl<'a, 'tcx> LateLintPass<'a, 'tcx> for InherentToString { - fn check_impl_item(&mut self, cx: &LateContext<'a, 'tcx>, impl_item: &'tcx ImplItem) { + fn check_impl_item(&mut self, cx: &LateContext<'a, 'tcx>, impl_item: &'tcx ImplItem<'_>) { if impl_item.span.from_expansion() { return; } @@ -119,7 +120,7 @@ fn check_impl_item(&mut self, cx: &LateContext<'a, 'tcx>, impl_item: &'tcx ImplI } } -fn show_lint(cx: &LateContext<'_, '_>, item: &ImplItem) { +fn show_lint(cx: &LateContext<'_, '_>, item: &ImplItem<'_>) { let display_trait_id = get_trait_def_id(cx, &["core", "fmt", "Display"]).expect("Failed to get trait ID of `Display`!");