File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 22//!
33//! *[See also the array primitive type](array).*
44
5- #![ stable( feature = "core_array" , since = "1.36 .0" ) ]
5+ #![ stable( feature = "core_array" , since = "1.35 .0" ) ]
66
77use crate :: borrow:: { Borrow , BorrowMut } ;
88use crate :: cmp:: Ordering ;
@@ -154,10 +154,11 @@ pub const fn from_mut<T>(s: &mut T) -> &mut [T; 1] {
154154
155155/// The error type returned when a conversion from a slice to an array fails.
156156#[ stable( feature = "try_from" , since = "1.34.0" ) ]
157+ #[ rustc_allowed_through_unstable_modules]
157158#[ derive( Debug , Copy , Clone ) ]
158159pub struct TryFromSliceError ( ( ) ) ;
159160
160- #[ stable( feature = "core_array" , since = "1.36 .0" ) ]
161+ #[ stable( feature = "core_array" , since = "1.35 .0" ) ]
161162impl fmt:: Display for TryFromSliceError {
162163 #[ inline]
163164 fn fmt ( & self , f : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
Original file line number Diff line number Diff line change 1818//! functions that convert various types to `char`.
1919
2020#![ allow( non_snake_case) ]
21- #![ stable( feature = "core_char " , since = "1.2 .0" ) ]
21+ #![ stable( feature = "rust1 " , since = "1.0 .0" ) ]
2222
2323mod convert;
2424mod decode;
Original file line number Diff line number Diff line change @@ -481,7 +481,7 @@ pub mod prelude;
481481
482482#[ stable( feature = "rust1" , since = "1.0.0" ) ]
483483pub use core:: any;
484- #[ stable( feature = "core_array" , since = "1.36 .0" ) ]
484+ #[ stable( feature = "core_array" , since = "1.35 .0" ) ]
485485pub use core:: array;
486486#[ unstable( feature = "async_iterator" , issue = "79024" ) ]
487487pub use core:: async_iter;
You can’t perform that action at this time.
0 commit comments