Skip to content

Commit 896a781

Browse files
committed
split
1 parent d58c9ee commit 896a781

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/ty-module/binders.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,8 @@ Binder(
6161
```
6262
This would cause all kinds of issues as the region `'^1_0` refers to a binder at a higher level than the outermost binder i.e. it is an escaping bound var.
6363
The `'^1` region (also writeable as `'^0_1`) is also ill formed as the binder it refers to does not introduce a second parameter.
64-
Modern day rustc will ICE when constructing this binder due to both of those reasons, in the past we would have simply allowed this to work and then ran into issues in other parts of the codebase.
64+
Modern day rustc will ICE when constructing this binder due to both of those reasons.
65+
In the past, we would have simply allowed this to work and then ran into issues in other parts of the codebase.
6566

6667
[`Binder`]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_middle/ty/struct.Binder.html
6768
[`BoundVar`]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_middle/ty/struct.BoundVar.html

0 commit comments

Comments
 (0)