diff options
| author | Michael Goulet <michael@errs.io> | 2024-07-08 16:23:01 -0400 |
|---|---|---|
| committer | Michael Goulet <michael@errs.io> | 2024-07-09 09:51:56 -0400 |
| commit | 7af825fea4fea17d0b58fcd8c1f2b6fa11638cfb (patch) | |
| tree | c8a3fdc913c23ce4b2c235ef106f158e6df9a60e /compiler/rustc_traits/src/codegen.rs | |
| parent | a2d58197a766085856504328948c89a33a6a36e8 (diff) | |
| download | rust-7af825fea4fea17d0b58fcd8c1f2b6fa11638cfb.tar.gz rust-7af825fea4fea17d0b58fcd8c1f2b6fa11638cfb.zip | |
Split out overflow handling into its own module
Diffstat (limited to 'compiler/rustc_traits/src/codegen.rs')
| -rw-r--r-- | compiler/rustc_traits/src/codegen.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_traits/src/codegen.rs b/compiler/rustc_traits/src/codegen.rs index 51ac7b2c7ac..3ee5fd876ff 100644 --- a/compiler/rustc_traits/src/codegen.rs +++ b/compiler/rustc_traits/src/codegen.rs @@ -7,7 +7,7 @@ use rustc_infer::infer::TyCtxtInferExt; use rustc_middle::bug; use rustc_middle::traits::CodegenObligationError; use rustc_middle::ty::{self, TyCtxt, TypeVisitableExt}; -use rustc_trait_selection::error_reporting::traits::TypeErrCtxtExt; +use rustc_trait_selection::error_reporting::traits::TypeErrCtxtOverflowExt; use rustc_trait_selection::traits::{ ImplSource, Obligation, ObligationCause, ObligationCtxt, ScrubbedTraitError, SelectionContext, Unimplemented, |
