about summary refs log tree commit diff
path: root/compiler/rustc_traits/src/codegen.rs
diff options
context:
space:
mode:
authorMichael Goulet <michael@errs.io>2024-06-01 15:08:44 -0400
committerMichael Goulet <michael@errs.io>2024-06-03 09:27:52 -0400
commit27f5eccd1f433c9455d1a0d3e402c1fa2a2ce334 (patch)
treee5a3e8f36662068f72d624001ef04eb049bc0c16 /compiler/rustc_traits/src/codegen.rs
parent94a524ed1163f4876544366586dc1b87deb13e95 (diff)
downloadrust-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.rs4
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;