about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAndrew Cann <shum@canndrew.org>2022-03-21 12:56:22 +0800
committerCharles Lew <crlf0710@gmail.com>2022-09-11 14:04:16 +0800
commit8aa30dd3cb18e4e6a1a5940addd8e744ab8d3eef (patch)
treea71eedb819d71162932beda85896fbe2e93ca2fd
parentc1f1bc6e8ff357bbff604d6db3d220bf29900179 (diff)
downloadrust-8aa30dd3cb18e4e6a1a5940addd8e744ab8d3eef.tar.gz
rust-8aa30dd3cb18e4e6a1a5940addd8e744ab8d3eef.zip
move generator_clone feature definition
Move it to the list of features with no tracking issue, since it has no
tracking issue.
-rw-r--r--compiler/rustc_feature/src/active.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/rustc_feature/src/active.rs b/compiler/rustc_feature/src/active.rs
index 0168587fbce..0000eabb665 100644
--- a/compiler/rustc_feature/src/active.rs
+++ b/compiler/rustc_feature/src/active.rs
@@ -152,6 +152,8 @@ declare_features! (
     (active, anonymous_lifetime_in_impl_trait, "1.63.0", None, None),
     /// Allows identifying the `compiler_builtins` crate.
     (active, compiler_builtins, "1.13.0", None, None),
+    /// Allows generators to be cloned.
+    (active, generator_clone, "1.60.0", None, None),
     /// Outputs useful `assert!` messages
     (active, generic_assert, "1.63.0", None, None),
     /// Allows using the `rust-intrinsic`'s "ABI".
@@ -396,8 +398,6 @@ declare_features! (
     (active, fn_align, "1.53.0", Some(82232), None),
     /// Allows defining generators.
     (active, generators, "1.21.0", Some(43122), None),
-    /// Allows generators to be cloned.
-    (active, generator_clone, "1.60.0", None, 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).