@@ -11,7 +11,7 @@ use crate::ty::fold::{TypeFoldable, TypeFolder, TypeVisitor};
1111use crate :: ty:: print:: { FmtPrinter , Printer } ;
1212use crate :: ty:: subst:: { Subst , SubstsRef } ;
1313use crate :: ty:: { self , List , Ty , TyCtxt } ;
14- use crate :: ty:: { AdtDef , CanonicalUserTypeAnnotations , InstanceDef , Region , UserTypeAnnotationIndex } ;
14+ use crate :: ty:: { AdtDef , InstanceDef , Region , UserTypeAnnotationIndex } ;
1515use rustc_hir as hir;
1616use rustc_hir:: def:: { CtorKind , Namespace } ;
1717use 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