File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -46,15 +46,15 @@ use crate::{convert, ops};
4646/// }
4747/// }
4848/// ```
49- #[ stable( feature = "control_flow_enum_type" , since = "1.54 .0" ) ]
49+ #[ stable( feature = "control_flow_enum_type" , since = "1.55 .0" ) ]
5050#[ derive( Debug , Clone , Copy , PartialEq ) ]
5151pub enum ControlFlow < B , C = ( ) > {
5252 /// Move on to the next phase of the operation as normal.
53- #[ stable( feature = "control_flow_enum_type" , since = "1.54 .0" ) ]
53+ #[ stable( feature = "control_flow_enum_type" , since = "1.55 .0" ) ]
5454 #[ cfg_attr( not( bootstrap) , lang = "Continue" ) ]
5555 Continue ( C ) ,
5656 /// Exit the operation without running subsequent phases.
57- #[ stable( feature = "control_flow_enum_type" , since = "1.54 .0" ) ]
57+ #[ stable( feature = "control_flow_enum_type" , since = "1.55 .0" ) ]
5858 #[ cfg_attr( not( bootstrap) , lang = "Break" ) ]
5959 Break ( B ) ,
6060 // Yes, the order of the variants doesn't match the type parameters.
You can’t perform that action at this time.
0 commit comments