Skip to content

Commit

Permalink
be specific about what kind of normalization we mean
Browse files Browse the repository at this point in the history
  • Loading branch information
nikomatsakis committed Dec 19, 2017
1 parent 3d826e5 commit 1816ede
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/librustc_mir/borrow_check/nll/universal_regions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -71,12 +71,14 @@ pub struct UniversalRegions<'tcx> {

/// The return type of this function, with all regions replaced by
/// their universal `RegionVid` equivalents. This type is **NOT
/// NORMALIZED**.
/// NORMALIZED** (i.e., it contains unnormalized associated type
/// projections).
pub output_ty: Ty<'tcx>,

/// The fully liberated input types of this function, with all
/// regions replaced by their universal `RegionVid` equivalents.
/// This type is **NOT NORMALIZED**.
/// This type is **NOT NORMALIZED** (i.e., it contains
/// unnormalized associated type projections).
pub input_tys: &'tcx [Ty<'tcx>],

/// Each RBP `('a, GK)` indicates that `GK: 'a` can be assumed to
Expand Down

0 comments on commit 1816ede

Please sign in to comment.