Skip to content

Commit 43f42d2

Browse files
committed
move generator_clone feature definition
Move it to the list of features with no tracking issue, since it has no tracking issue.
1 parent 0e8c69e commit 43f42d2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

compiler/rustc_feature/src/active.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,8 @@ declare_features! (
150150
(active, allow_internal_unstable, "1.0.0", None, None),
151151
/// Allows identifying the `compiler_builtins` crate.
152152
(active, compiler_builtins, "1.13.0", None, None),
153+
/// Allows generators to be cloned.
154+
(active, generator_clone, "1.60.0", None, None),
153155
/// Allows using the `rust-intrinsic`'s "ABI".
154156
(active, intrinsics, "1.0.0", None, None),
155157
/// Allows using `#[lang = ".."]` attribute for linking items to special compiler logic.
@@ -396,8 +398,6 @@ declare_features! (
396398
(active, fn_align, "1.53.0", Some(82232), None),
397399
/// Allows defining generators.
398400
(active, generators, "1.21.0", Some(43122), None),
399-
/// Allows generators to be cloned.
400-
(active, generator_clone, "1.60.0", None, None),
401401
/// Infer generic args for both consts and types.
402402
(active, generic_arg_infer, "1.55.0", Some(85077), None),
403403
/// Allows associated types to be generic, e.g., `type Foo<T>;` (RFC 1598).

0 commit comments

Comments
 (0)