File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change 116
116
#![ feature( closure_track_caller) ]
117
117
#![ feature( const_carrying_mul_add) ]
118
118
#![ feature( const_eval_select) ]
119
+ #![ feature( control_flow_into_value) ]
119
120
#![ feature( core_intrinsics) ]
120
121
#![ feature( coverage_attribute) ]
121
122
#![ feature( disjoint_bitor) ]
141
142
#![ feature( unchecked_shifts) ]
142
143
#![ feature( utf16_extra) ]
143
144
#![ feature( variant_count) ]
144
- #![ feature( control_flow_into_value) ]
145
145
// tidy-alphabetical-end
146
146
//
147
147
// Language features:
Original file line number Diff line number Diff line change @@ -235,6 +235,7 @@ impl<T> ControlFlow<T, T> {
235
235
/// # Examples
236
236
///
237
237
/// ```
238
+ /// #![feature(control_flow_into_value)]
238
239
/// use std::ops::ControlFlow;
239
240
///
240
241
/// assert_eq!(ControlFlow::<i32, i32>::Break(1024).into_value(), 1024);
You can’t perform that action at this time.
0 commit comments