Skip to content

Commit 187acab

Browse files
Formatting silliness
1 parent ef49daa commit 187acab

File tree

1 file changed

+3
-3
lines changed
  • compiler/rustc_middle/src/mir

1 file changed

+3
-3
lines changed

compiler/rustc_middle/src/mir/mod.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ use crate::ty::fold::{TypeFoldable, TypeFolder, TypeVisitor};
1111
use crate::ty::print::{FmtPrinter, Printer};
1212
use crate::ty::subst::{Subst, SubstsRef};
1313
use crate::ty::{self, List, Ty, TyCtxt};
14-
use crate::ty::{AdtDef, CanonicalUserTypeAnnotations, InstanceDef, Region, UserTypeAnnotationIndex};
14+
use crate::ty::{AdtDef, InstanceDef, Region, UserTypeAnnotationIndex};
1515
use rustc_hir as hir;
1616
use rustc_hir::def::{CtorKind, Namespace};
1717
use rustc_hir::def_id::{DefId, CRATE_DEF_INDEX};
@@ -184,7 +184,7 @@ pub struct Body<'tcx> {
184184
pub local_decls: LocalDecls<'tcx>,
185185

186186
/// User type annotations.
187-
pub user_type_annotations: CanonicalUserTypeAnnotations<'tcx>,
187+
pub user_type_annotations: ty::CanonicalUserTypeAnnotations<'tcx>,
188188

189189
/// The number of arguments this function takes.
190190
///
@@ -246,7 +246,7 @@ impl<'tcx> Body<'tcx> {
246246
basic_blocks: IndexVec<BasicBlock, BasicBlockData<'tcx>>,
247247
source_scopes: IndexVec<SourceScope, SourceScopeData>,
248248
local_decls: LocalDecls<'tcx>,
249-
user_type_annotations: CanonicalUserTypeAnnotations<'tcx>,
249+
user_type_annotations: ty::CanonicalUserTypeAnnotations<'tcx>,
250250
arg_count: usize,
251251
var_debug_info: Vec<VarDebugInfo<'tcx>>,
252252
span: Span,

0 commit comments

Comments
 (0)