about summary refs log tree commit diff
path: root/compiler/rustc_trait_selection/src/traits/mod.rs
diff options
context:
space:
mode:
authorMichael Goulet <michael@errs.io>2024-07-21 15:20:41 -0400
committerMichael Goulet <michael@errs.io>2024-07-21 22:34:35 -0400
commitce8a625092fa48c2be475f659aa2a91b5591108f (patch)
tree00970ec2be7f2197edb9a9ab419d5fe94eb266d6 /compiler/rustc_trait_selection/src/traits/mod.rs
parentf49738ba6c904b75de8b342d4a4fb9664819b2a1 (diff)
downloadrust-ce8a625092fa48c2be475f659aa2a91b5591108f.tar.gz
rust-ce8a625092fa48c2be475f659aa2a91b5591108f.zip
Move all error reporting into rustc_trait_selection
Diffstat (limited to 'compiler/rustc_trait_selection/src/traits/mod.rs')
-rw-r--r--compiler/rustc_trait_selection/src/traits/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_trait_selection/src/traits/mod.rs b/compiler/rustc_trait_selection/src/traits/mod.rs
index f7eb1730582..c57ca014799 100644
--- a/compiler/rustc_trait_selection/src/traits/mod.rs
+++ b/compiler/rustc_trait_selection/src/traits/mod.rs
@@ -22,7 +22,7 @@ mod util;
 pub mod vtable;
 pub mod wf;
 
-use crate::error_reporting::traits::TypeErrCtxtExt as _;
+use crate::error_reporting::InferCtxtErrorExt;
 use crate::infer::outlives::env::OutlivesEnvironment;
 use crate::infer::{InferCtxt, TyCtxtInferExt};
 use crate::regions::InferCtxtRegionExt;