diff --git a/library/core/src/ops/control_flow.rs b/library/core/src/ops/control_flow.rs index 4a7da1c3cac99..ff1e968a8d113 100644 --- a/library/core/src/ops/control_flow.rs +++ b/library/core/src/ops/control_flow.rs @@ -46,15 +46,15 @@ use crate::{convert, ops}; /// } /// } /// ``` -#[stable(feature = "control_flow_enum_type", since = "1.54.0")] +#[stable(feature = "control_flow_enum_type", since = "1.55.0")] #[derive(Debug, Clone, Copy, PartialEq)] pub enum ControlFlow { /// Move on to the next phase of the operation as normal. - #[stable(feature = "control_flow_enum_type", since = "1.54.0")] + #[stable(feature = "control_flow_enum_type", since = "1.55.0")] #[cfg_attr(not(bootstrap), lang = "Continue")] Continue(C), /// Exit the operation without running subsequent phases. - #[stable(feature = "control_flow_enum_type", since = "1.54.0")] + #[stable(feature = "control_flow_enum_type", since = "1.55.0")] #[cfg_attr(not(bootstrap), lang = "Break")] Break(B), // Yes, the order of the variants doesn't match the type parameters.