Skip to content

Commit afbff05

Browse files
committed
Move a use statement so it's with the other use statements.
1 parent e800967 commit afbff05

File tree

1 file changed

+1
-2
lines changed
  • compiler/rustc_infer/src/infer/opaque_types

1 file changed

+1
-2
lines changed

compiler/rustc_infer/src/infer/opaque_types/mod.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ use rustc_middle::ty::{
1313
use rustc_span::Span;
1414
use tracing::{debug, instrument};
1515

16+
use super::DefineOpaqueTypes;
1617
use crate::errors::OpaqueHiddenTypeDiag;
1718
use crate::infer::{InferCtxt, InferOk};
1819
use crate::traits::{self, Obligation};
@@ -22,8 +23,6 @@ mod table;
2223
pub(crate) type OpaqueTypeMap<'tcx> = FxIndexMap<OpaqueTypeKey<'tcx>, OpaqueTypeDecl<'tcx>>;
2324
pub(crate) use table::{OpaqueTypeStorage, OpaqueTypeTable};
2425

25-
use super::DefineOpaqueTypes;
26-
2726
/// Information about the opaque types whose values we
2827
/// are inferring in this function (these are the `impl Trait` that
2928
/// appear in the return type).

0 commit comments

Comments
 (0)