We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3d826e5 commit 1816edeCopy full SHA for 1816ede
src/librustc_mir/borrow_check/nll/universal_regions.rs
@@ -71,12 +71,14 @@ pub struct UniversalRegions<'tcx> {
71
72
/// The return type of this function, with all regions replaced by
73
/// their universal `RegionVid` equivalents. This type is **NOT
74
- /// NORMALIZED**.
+ /// NORMALIZED** (i.e., it contains unnormalized associated type
75
+ /// projections).
76
pub output_ty: Ty<'tcx>,
77
78
/// The fully liberated input types of this function, with all
79
/// regions replaced by their universal `RegionVid` equivalents.
- /// This type is **NOT NORMALIZED**.
80
+ /// This type is **NOT NORMALIZED** (i.e., it contains
81
+ /// unnormalized associated type projections).
82
pub input_tys: &'tcx [Ty<'tcx>],
83
84
/// Each RBP `('a, GK)` indicates that `GK: 'a` can be assumed to
0 commit comments