diff options
| author | Michael Goulet <michael@errs.io> | 2024-07-08 15:36:57 -0400 |
|---|---|---|
| committer | Michael Goulet <michael@errs.io> | 2024-07-08 16:04:47 -0400 |
| commit | fe4c995ccb292f5b8fdaba0bfc5f58c6ee8e7fed (patch) | |
| tree | 58a814d933c61035f9b8d9961d749110b8bd0465 /compiler/rustc_trait_selection/src/traits/engine.rs | |
| parent | a06e9c83f6bc6b9b69f1b0d9f1ab659f8f03db4d (diff) | |
| download | rust-fe4c995ccb292f5b8fdaba0bfc5f58c6ee8e7fed.tar.gz rust-fe4c995ccb292f5b8fdaba0bfc5f58c6ee8e7fed.zip | |
Move trait selection error reporting to its own top-level module
Diffstat (limited to 'compiler/rustc_trait_selection/src/traits/engine.rs')
| -rw-r--r-- | compiler/rustc_trait_selection/src/traits/engine.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_trait_selection/src/traits/engine.rs b/compiler/rustc_trait_selection/src/traits/engine.rs index 811f61d2bf3..bdc27e734f9 100644 --- a/compiler/rustc_trait_selection/src/traits/engine.rs +++ b/compiler/rustc_trait_selection/src/traits/engine.rs @@ -3,10 +3,10 @@ use std::fmt::Debug; use super::{FromSolverError, TraitEngine}; use super::{FulfillmentContext, ScrubbedTraitError}; +use crate::error_reporting::traits::TypeErrCtxtExt; use crate::regions::InferCtxtRegionExt; use crate::solve::FulfillmentCtxt as NextFulfillmentCtxt; use crate::solve::NextSolverError; -use crate::traits::error_reporting::TypeErrCtxtExt; use crate::traits::fulfill::OldSolverError; use crate::traits::NormalizeExt; use crate::traits::StructurallyNormalizeExt; |
