1
Fork 0

Rollup merge of #110237 - oli-obk:impl_trait_in_assoc_tys, r=jackh726

Split out a separate feature gate for impl trait in associated types

in https://github.com/rust-lang/rust/issues/107645 it was decided that we'll take a new route for type alias impl trait. The exact route isn't clear yet, so while I'm working on implementing some of these proposed changes (e.g. in https://github.com/rust-lang/rust/pull/110010) to be able to experiment with them, I will also work on stabilizing another sugar version first: impl trait in associated types. Similarly I'll look into creating feature gates for impl trait in const/static types.

This PR does nothing but split the feature gate, so that you need to enable a different feature gate for

```rust
impl Trait for Type {
    type Assoc = impl SomeTrait;
}
```

than what you need for `type Foo = impl SomeTrait;`
This commit is contained in:
Matthias Krüger 2023-04-12 20:56:24 +02:00 committed by GitHub
commit 214e4ef4ef
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
68 changed files with 217 additions and 148 deletions

View file

@ -801,6 +801,7 @@ symbols! {
ignore,
impl_header_lifetime_elision,
impl_lint_pass,
impl_trait_in_assoc_type,
impl_trait_in_bindings,
impl_trait_in_fn_trait_return,
impl_trait_projections,