about summary refs log tree commit diff
path: root/compiler/rustc_feature/src
diff options
context:
space:
mode:
authorAndrew Cann <shum@canndrew.org>2022-03-27 15:50:40 +0800
committerCharles Lew <crlf0710@gmail.com>2022-09-11 14:04:17 +0800
commit1bc9453aa8a8ec07b4a32b201612b149b762fccd (patch)
tree5fcbc73810a5acc7b248e7b93ee0a93d6f0f24c5 /compiler/rustc_feature/src
parentfa6dbcf20da11e3af4d8d6494e58d1b5a60b39ab (diff)
downloadrust-1bc9453aa8a8ec07b4a32b201612b149b762fccd.tar.gz
rust-1bc9453aa8a8ec07b4a32b201612b149b762fccd.zip
Add tracking issue number to feature(generator_clone)
Diffstat (limited to 'compiler/rustc_feature/src')
-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 0000eabb665..c2cc4d7923b 100644
--- a/compiler/rustc_feature/src/active.rs
+++ b/compiler/rustc_feature/src/active.rs
@@ -152,8 +152,6 @@ 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,6 +394,8 @@ declare_features! (
     (active, ffi_returns_twice, "1.34.0", Some(58314), None),
     /// Allows using `#[repr(align(...))]` on function items
     (active, fn_align, "1.53.0", Some(82232), None),
+    /// Allows generators to be cloned.
+    (active, generator_clone, "1.60.0", Some(95360), None),
     /// Allows defining generators.
     (active, generators, "1.21.0", Some(43122), None),
     /// Infer generic args for both consts and types.