about summary refs log tree commit diff
path: root/compiler/rustc_feature
diff options
context:
space:
mode:
authorJack Huey <31162821+jackh726@users.noreply.github.com>2022-03-11 18:46:49 -0500
committerJack Huey <31162821+jackh726@users.noreply.github.com>2022-03-30 17:41:11 -0400
commit4e570a68a158b6592fc00f3c6e21efda84992079 (patch)
tree3c0e48d1a0bcbd71dbd2f6e49efb1d9ecef2a35a /compiler/rustc_feature
parent5e1d19d30723c287f049662474021f2b9a9894ce (diff)
downloadrust-4e570a68a158b6592fc00f3c6e21efda84992079.tar.gz
rust-4e570a68a158b6592fc00f3c6e21efda84992079.zip
Add the generic_associated_types_extended feature
Diffstat (limited to 'compiler/rustc_feature')
-rw-r--r--compiler/rustc_feature/src/active.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/compiler/rustc_feature/src/active.rs b/compiler/rustc_feature/src/active.rs
index feef7295254..da52388654a 100644
--- a/compiler/rustc_feature/src/active.rs
+++ b/compiler/rustc_feature/src/active.rs
@@ -400,6 +400,8 @@ declare_features! (
     (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
     (incomplete, generic_const_exprs, "1.56.0", Some(76560), None),
     /// Allows using `..X`, `..=X`, `...X`, and `X..` as a pattern.