diff options
| author | bors <bors@rust-lang.org> | 2021-07-16 16:23:15 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2021-07-16 16:23:15 +0000 |
| commit | c49895d9049f67e07e297ee487836a587f69690e (patch) | |
| tree | 020ffe701896a7e3f0f71c18e2746596e0194ece /compiler/rustc_feature/src | |
| parent | 2119976c492894b72287f08865c71d63cff8d471 (diff) | |
| parent | f1ab6f93e6c25170b78ec21105ecbb6893080993 (diff) | |
| download | rust-c49895d9049f67e07e297ee487836a587f69690e.tar.gz rust-c49895d9049f67e07e297ee487836a587f69690e.zip | |
Auto merge of #84623 - jackh726:gats-incomplete, r=nikomatsakis
Make GATs no longer an incomplete feature Blocked on ~#84622~, ~#82272~, ~#76826~ r? `@nikomatsakis`
Diffstat (limited to 'compiler/rustc_feature/src')
| -rw-r--r-- | compiler/rustc_feature/src/active.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_feature/src/active.rs b/compiler/rustc_feature/src/active.rs index ede510b6936..64f0824e355 100644 --- a/compiler/rustc_feature/src/active.rs +++ b/compiler/rustc_feature/src/active.rs @@ -405,7 +405,7 @@ declare_features! ( (active, in_band_lifetimes, "1.23.0", Some(44524), None), /// Allows associated types to be generic, e.g., `type Foo<T>;` (RFC 1598). - (incomplete, generic_associated_types, "1.23.0", Some(44265), None), + (active, generic_associated_types, "1.23.0", Some(44265), None), /// Allows defining `trait X = A + B;` alias items. (active, trait_alias, "1.24.0", Some(41517), None), |
