1
Fork 0

Stabilize impl_trait_projections

This commit is contained in:
Michael Goulet 2023-09-08 03:00:59 +00:00
parent f06b7c59a3
commit e4af4e5083
17 changed files with 50 additions and 226 deletions

View file

@ -5,7 +5,7 @@ or `Self` that references lifetimes from a parent scope.
Erroneous code example:
```compile_fail,edition2018
```ignore,edition2018
struct S<'a>(&'a i32);
impl<'a> S<'a> {