Skip to content

Commit 92e715e

Browse files
committed
Fix TAIT row in Appendix B matrix
In Appendix B, we have a matrix of capturing effects. For TAIT, we had correctly marked the capturing of lifetime parameters from the outer impl as being not applicable in Rust 2021, but we had incorrectly marked this as being "yes" in Rust 2024. It's of course not applicable in both editions. Let's fix that.
1 parent c036285 commit 92e715e

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

text/3498-lifetime-capture-rules-2024.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -458,13 +458,13 @@ Other resources:
458458

459459
| | 2021: *Outer LP* | 2021: *Item LP* | 2024: *Outer LP* | 2024: *Item LP* |
460460
|-|-|-|-|-|
461-
| RPIT | N | N | Y | Y |
462-
| `async fn` | Y | Y | Y | Y |
463-
| GATs | Y | Y | Y | Y |
464-
| TAIT | N/A | Y | Y | Y |
465-
| ATPIT | Y | Y | Y | Y |
466-
| RPITIT: trait | Y | Y | Y | Y |
467-
| RPITIT: impl | Y | Y | Y | Y |
461+
| RPIT | N | N | Y | Y |
462+
| `async fn` | Y | Y | Y | Y |
463+
| GATs | Y | Y | Y | Y |
464+
| TAIT | N/A | Y | N/A | Y |
465+
| ATPIT | Y | Y | Y | Y |
466+
| RPITIT: trait | Y | Y | Y | Y |
467+
| RPITIT: impl | Y | Y | Y | Y |
468468

469469
In the table above, "LP" refers to "lifetime parameters".
470470

0 commit comments

Comments
 (0)