We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa6dbcf commit 1bc9453Copy full SHA for 1bc9453
compiler/rustc_feature/src/active.rs
@@ -152,8 +152,6 @@ declare_features! (
152
(active, anonymous_lifetime_in_impl_trait, "1.63.0", None, None),
153
/// Allows identifying the `compiler_builtins` crate.
154
(active, compiler_builtins, "1.13.0", None, None),
155
- /// Allows generators to be cloned.
156
- (active, generator_clone, "1.60.0", None, None),
157
/// Outputs useful `assert!` messages
158
(active, generic_assert, "1.63.0", None, None),
159
/// Allows using the `rust-intrinsic`'s "ABI".
@@ -396,6 +394,8 @@ declare_features! (
396
394
(active, ffi_returns_twice, "1.34.0", Some(58314), None),
397
395
/// Allows using `#[repr(align(...))]` on function items
398
(active, fn_align, "1.53.0", Some(82232), None),
+ /// Allows generators to be cloned.
+ (active, generator_clone, "1.60.0", Some(95360), None),
399
/// Allows defining generators.
400
(active, generators, "1.21.0", Some(43122), None),
401
/// Infer generic args for both consts and types.
0 commit comments