This repository was archived by the owner on May 28, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +1
-4
lines changed Expand file tree Collapse file tree 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> {
737737 /// # Examples
738738 ///
739739 /// ```
740- /// #![feature(bound_cloned)]
741740 /// use std::ops::Bound::*;
742741 /// use std::ops::RangeBounds;
743742 ///
744743 /// assert_eq!((1..12).start_bound(), Included(&1));
745744 /// assert_eq!((1..12).start_bound().cloned(), Included(1));
746745 /// ```
747- #[ unstable ( feature = "bound_cloned" , issue = "61356 " ) ]
746+ #[ stable ( feature = "bound_cloned" , since = "1.55.0 " ) ]
748747 pub fn cloned ( self ) -> Bound < T > {
749748 match self {
750749 Bound :: Unbounded => Bound :: Unbounded ,
Original file line number Diff line number Diff line change 44#![ feature( array_map) ]
55#![ feature( array_windows) ]
66#![ feature( bool_to_option) ]
7- #![ feature( bound_cloned) ]
87#![ feature( box_syntax) ]
98#![ feature( cell_update) ]
109#![ feature( cfg_panic) ]
Original file line number Diff line number Diff line change 3131#![ feature( restricted_std) ]
3232#![ feature( rustc_attrs) ]
3333#![ feature( min_specialization) ]
34- #![ feature( bound_cloned) ]
3534#![ recursion_limit = "256" ]
3635
3736#[ unstable( feature = "proc_macro_internals" , issue = "27812" ) ]
You can’t perform that action at this time.
0 commit comments