about summary refs log tree commit diff
path: root/clippy_lints/src/implicit_hasher.rs
diff options
context:
space:
mode:
authorlcnr <rust@lcnr.de>2022-09-26 13:00:29 +0200
committerlcnr <rust@lcnr.de>2022-09-27 10:37:23 +0200
commite5ce6d18df883f593e72f7958bebdc3ebcdbe85e (patch)
treeacd805104d4bcb77e428d43d3b96e5b339b65a56 /clippy_lints/src/implicit_hasher.rs
parent06568fd6c707b878ae69ede1532b82c7ba47e07e (diff)
downloadrust-e5ce6d18df883f593e72f7958bebdc3ebcdbe85e.tar.gz
rust-e5ce6d18df883f593e72f7958bebdc3ebcdbe85e.zip
rustc_typeck to rustc_hir_analysis
Diffstat (limited to 'clippy_lints/src/implicit_hasher.rs')
-rw-r--r--clippy_lints/src/implicit_hasher.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/clippy_lints/src/implicit_hasher.rs b/clippy_lints/src/implicit_hasher.rs
index 804fdc2da08..a920c3bba2a 100644
--- a/clippy_lints/src/implicit_hasher.rs
+++ b/clippy_lints/src/implicit_hasher.rs
@@ -12,7 +12,7 @@ use rustc_middle::ty::{Ty, TypeckResults};
 use rustc_session::{declare_lint_pass, declare_tool_lint};
 use rustc_span::source_map::Span;
 use rustc_span::symbol::sym;
-use rustc_typeck::hir_ty_to_ty;
+use rustc_hir_analysis::hir_ty_to_ty;
 
 use if_chain::if_chain;