Skip to content

Commit

Permalink
Master is 1.55 now :(
Browse files Browse the repository at this point in the history
  • Loading branch information
scottmcm committed Jun 14, 2021
1 parent 65a0a8b commit 590d452
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions library/core/src/ops/control_flow.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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<B, C = ()> {
/// 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.
Expand Down

0 comments on commit 590d452

Please sign in to comment.