about summary refs log tree commit diff
path: root/compiler/rustc_feature/src/active.rs
diff options
context:
space:
mode:
authorJack Huey <31162821+jackh726@users.noreply.github.com>2022-05-04 10:22:19 -0400
committerJack Huey <31162821+jackh726@users.noreply.github.com>2022-08-30 23:06:24 -0400
commit3cf0e98dc9a67086f4e738edb9d61b2fee1a38b0 (patch)
treef559e3e09fd50967611da6d00b166a142707dfd4 /compiler/rustc_feature/src/active.rs
parent02654a0844f5c8d29bac318c3c6c666da3d8543d (diff)
downloadrust-3cf0e98dc9a67086f4e738edb9d61b2fee1a38b0.tar.gz
rust-3cf0e98dc9a67086f4e738edb9d61b2fee1a38b0.zip
Stabilize GATs
Diffstat (limited to 'compiler/rustc_feature/src/active.rs')
-rw-r--r--compiler/rustc_feature/src/active.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/compiler/rustc_feature/src/active.rs b/compiler/rustc_feature/src/active.rs
index e09c3ccbc75..4f628cee630 100644
--- a/compiler/rustc_feature/src/active.rs
+++ b/compiler/rustc_feature/src/active.rs
@@ -398,8 +398,6 @@ declare_features! (
     (active, generators, "1.21.0", Some(43122), None),
     /// Infer generic args for both consts and types.
     (active, generic_arg_infer, "1.55.0", Some(85077), None),
-    /// Allows associated types to be generic, e.g., `type Foo<T>;` (RFC 1598).
-    (active, generic_associated_types, "1.23.0", Some(44265), None),
     /// An extension to the `generic_associated_types` feature, allowing incomplete features.
     (incomplete, generic_associated_types_extended, "1.61.0", Some(95451), None),
     /// Allows non-trivial generic constants which have to have wfness manually propagated to callers