Skip to content
This repository was archived by the owner on May 28, 2025. It is now read-only.
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit c49895d

Browse files
committedJul 16, 2021
Auto merge of rust-lang#84623 - jackh726:gats-incomplete, r=nikomatsakis
Make GATs no longer an incomplete feature Blocked on ~rust-lang#84622~, ~rust-lang#82272~, ~rust-lang#76826~ r? `@nikomatsakis`
2 parents 2119976 + f1ab6f9 commit c49895d

File tree

138 files changed

+197
-587
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

138 files changed

+197
-587
lines changed
 

‎compiler/rustc_feature/src/active.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -405,7 +405,7 @@ declare_features! (
405405
(active, in_band_lifetimes, "1.23.0", Some(44524), None),
406406

407407
/// Allows associated types to be generic, e.g., `type Foo<T>;` (RFC 1598).
408-
(incomplete, generic_associated_types, "1.23.0", Some(44265), None),
408+
(active, generic_associated_types, "1.23.0", Some(44265), None),
409409

410410
/// Allows defining `trait X = A + B;` alias items.
411411
(active, trait_alias, "1.24.0", Some(41517), None),

‎compiler/rustc_lint/src/builtin.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2315,7 +2315,7 @@ declare_lint! {
23152315
/// ### Example
23162316
///
23172317
/// ```rust
2318-
/// #![feature(generic_associated_types)]
2318+
/// #![feature(const_generics)]
23192319
/// ```
23202320
///
23212321
/// {{produces}}

0 commit comments

Comments
 (0)
This repository has been archived.