diff options
| author | Michael Goulet <michael@errs.io> | 2024-06-01 15:08:44 -0400 |
|---|---|---|
| committer | Michael Goulet <michael@errs.io> | 2024-06-03 09:27:52 -0400 |
| commit | 27f5eccd1f433c9455d1a0d3e402c1fa2a2ce334 (patch) | |
| tree | e5a3e8f36662068f72d624001ef04eb049bc0c16 /compiler/rustc_traits/src/codegen.rs | |
| parent | 94a524ed1163f4876544366586dc1b87deb13e95 (diff) | |
| download | rust-27f5eccd1f433c9455d1a0d3e402c1fa2a2ce334.tar.gz rust-27f5eccd1f433c9455d1a0d3e402c1fa2a2ce334.zip | |
Move FulfillmentErrorCode to rustc_trait_selection too
Diffstat (limited to 'compiler/rustc_traits/src/codegen.rs')
| -rw-r--r-- | compiler/rustc_traits/src/codegen.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/rustc_traits/src/codegen.rs b/compiler/rustc_traits/src/codegen.rs index 41f607fb3a8..5defb817271 100644 --- a/compiler/rustc_traits/src/codegen.rs +++ b/compiler/rustc_traits/src/codegen.rs @@ -4,13 +4,13 @@ // general routines. use rustc_infer::infer::TyCtxtInferExt; -use rustc_infer::traits::FulfillmentErrorCode; use rustc_middle::bug; use rustc_middle::traits::CodegenObligationError; use rustc_middle::ty::{self, TyCtxt, TypeVisitableExt}; use rustc_trait_selection::traits::error_reporting::TypeErrCtxtExt; use rustc_trait_selection::traits::{ - ImplSource, Obligation, ObligationCause, ObligationCtxt, SelectionContext, Unimplemented, + FulfillmentErrorCode, ImplSource, Obligation, ObligationCause, ObligationCtxt, + SelectionContext, Unimplemented, }; use tracing::debug; |
