File tree 3 files changed +1
-4
lines changed
3 files changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -737,14 +737,13 @@ impl<T: Clone> Bound<&T> {
737
737
/// # Examples
738
738
///
739
739
/// ```
740
- /// #![feature(bound_cloned)]
741
740
/// use std::ops::Bound::*;
742
741
/// use std::ops::RangeBounds;
743
742
///
744
743
/// assert_eq!((1..12).start_bound(), Included(&1));
745
744
/// assert_eq!((1..12).start_bound().cloned(), Included(1));
746
745
/// ```
747
- #[ unstable ( feature = "bound_cloned" , issue = "61356 " ) ]
746
+ #[ stable ( feature = "bound_cloned" , since = "1.55.0 " ) ]
748
747
pub fn cloned ( self ) -> Bound < T > {
749
748
match self {
750
749
Bound :: Unbounded => Bound :: Unbounded ,
Original file line number Diff line number Diff line change 4
4
#![ feature( array_map) ]
5
5
#![ feature( array_windows) ]
6
6
#![ feature( bool_to_option) ]
7
- #![ feature( bound_cloned) ]
8
7
#![ feature( box_syntax) ]
9
8
#![ feature( cell_update) ]
10
9
#![ feature( cfg_panic) ]
Original file line number Diff line number Diff line change 31
31
#![ feature( restricted_std) ]
32
32
#![ feature( rustc_attrs) ]
33
33
#![ feature( min_specialization) ]
34
- #![ feature( bound_cloned) ]
35
34
#![ recursion_limit = "256" ]
36
35
37
36
#[ unstable( feature = "proc_macro_internals" , issue = "27812" ) ]
You can’t perform that action at this time.
0 commit comments