@@ -11,7 +11,7 @@ use crate::ty::fold::{TypeFoldable, TypeFolder, TypeVisitor};
11
11
use crate :: ty:: print:: { FmtPrinter , Printer } ;
12
12
use crate :: ty:: subst:: { Subst , SubstsRef } ;
13
13
use crate :: ty:: { self , List , Ty , TyCtxt } ;
14
- use crate :: ty:: { AdtDef , CanonicalUserTypeAnnotations , InstanceDef , Region , UserTypeAnnotationIndex } ;
14
+ use crate :: ty:: { AdtDef , InstanceDef , Region , UserTypeAnnotationIndex } ;
15
15
use rustc_hir as hir;
16
16
use rustc_hir:: def:: { CtorKind , Namespace } ;
17
17
use rustc_hir:: def_id:: { DefId , CRATE_DEF_INDEX } ;
@@ -184,7 +184,7 @@ pub struct Body<'tcx> {
184
184
pub local_decls : LocalDecls < ' tcx > ,
185
185
186
186
/// User type annotations.
187
- pub user_type_annotations : CanonicalUserTypeAnnotations < ' tcx > ,
187
+ pub user_type_annotations : ty :: CanonicalUserTypeAnnotations < ' tcx > ,
188
188
189
189
/// The number of arguments this function takes.
190
190
///
@@ -246,7 +246,7 @@ impl<'tcx> Body<'tcx> {
246
246
basic_blocks : IndexVec < BasicBlock , BasicBlockData < ' tcx > > ,
247
247
source_scopes : IndexVec < SourceScope , SourceScopeData > ,
248
248
local_decls : LocalDecls < ' tcx > ,
249
- user_type_annotations : CanonicalUserTypeAnnotations < ' tcx > ,
249
+ user_type_annotations : ty :: CanonicalUserTypeAnnotations < ' tcx > ,
250
250
arg_count : usize ,
251
251
var_debug_info : Vec < VarDebugInfo < ' tcx > > ,
252
252
span : Span ,
0 commit comments