rename ReLateBound
to ReBound
other changes: - `Region::new_late_bound` -> `Region::new_bound` - `Region::is_late_bound` -> `Region::is_bound`
This commit is contained in:
parent
28328c8389
commit
86fa1317a3
80 changed files with 192 additions and 195 deletions
|
@ -419,9 +419,11 @@ impl<'a, 'tcx> ConstraintContext<'a, 'tcx> {
|
|||
|
||||
ty::ReStatic => {}
|
||||
|
||||
ty::ReLateBound(..) => {
|
||||
// Late-bound regions do not get substituted the same
|
||||
// way early-bound regions do, so we skip them here.
|
||||
ty::ReBound(..) => {
|
||||
// Either a higher-ranked region inside of a type or a
|
||||
// late-bound function parameter.
|
||||
//
|
||||
// We do not compute constraints for either of these.
|
||||
}
|
||||
|
||||
ty::ReError(_) => {}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue