Add tracking issue number to feature(generator_clone)

This commit is contained in:
Andrew Cann 2022-03-27 15:50:40 +08:00 committed by Charles Lew
parent fa6dbcf20d
commit 1bc9453aa8

View File

@ -152,8 +152,6 @@ pub fn set(&self, features: &mut Features, span: Span) {
(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 @@ pub fn set(&self, features: &mut Features, span: Span) {
(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.