We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
use
1 parent e800967 commit afbff05Copy full SHA for afbff05
compiler/rustc_infer/src/infer/opaque_types/mod.rs
@@ -13,6 +13,7 @@ use rustc_middle::ty::{
13
use rustc_span::Span;
14
use tracing::{debug, instrument};
15
16
+use super::DefineOpaqueTypes;
17
use crate::errors::OpaqueHiddenTypeDiag;
18
use crate::infer::{InferCtxt, InferOk};
19
use crate::traits::{self, Obligation};
@@ -22,8 +23,6 @@ mod table;
22
23
pub(crate) type OpaqueTypeMap<'tcx> = FxIndexMap<OpaqueTypeKey<'tcx>, OpaqueTypeDecl<'tcx>>;
24
pub(crate) use table::{OpaqueTypeStorage, OpaqueTypeTable};
25
-use super::DefineOpaqueTypes;
26
-
27
/// Information about the opaque types whose values we
28
/// are inferring in this function (these are the `impl Trait` that
29
/// appear in the return type).
0 commit comments