File tree 1 file changed +3
-3
lines changed
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};
46
46
/// }
47
47
/// }
48
48
/// ```
49
- #[ stable( feature = "control_flow_enum_type" , since = "1.54 .0" ) ]
49
+ #[ stable( feature = "control_flow_enum_type" , since = "1.55 .0" ) ]
50
50
#[ derive( Debug , Clone , Copy , PartialEq ) ]
51
51
pub enum ControlFlow < B , C = ( ) > {
52
52
/// 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" ) ]
54
54
#[ cfg_attr( not( bootstrap) , lang = "Continue" ) ]
55
55
Continue ( C ) ,
56
56
/// 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" ) ]
58
58
#[ cfg_attr( not( bootstrap) , lang = "Break" ) ]
59
59
Break ( B ) ,
60
60
// Yes, the order of the variants doesn't match the type parameters.
You can’t perform that action at this time.
0 commit comments