File tree 3 files changed +5
-4
lines changed
3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 2
2
//!
3
3
//! *[See also the array primitive type](array).*
4
4
5
- #![ stable( feature = "core_array" , since = "1.36 .0" ) ]
5
+ #![ stable( feature = "core_array" , since = "1.35 .0" ) ]
6
6
7
7
use crate :: borrow:: { Borrow , BorrowMut } ;
8
8
use crate :: cmp:: Ordering ;
@@ -154,10 +154,11 @@ pub const fn from_mut<T>(s: &mut T) -> &mut [T; 1] {
154
154
155
155
/// The error type returned when a conversion from a slice to an array fails.
156
156
#[ stable( feature = "try_from" , since = "1.34.0" ) ]
157
+ #[ rustc_allowed_through_unstable_modules]
157
158
#[ derive( Debug , Copy , Clone ) ]
158
159
pub struct TryFromSliceError ( ( ) ) ;
159
160
160
- #[ stable( feature = "core_array" , since = "1.36 .0" ) ]
161
+ #[ stable( feature = "core_array" , since = "1.35 .0" ) ]
161
162
impl fmt:: Display for TryFromSliceError {
162
163
#[ inline]
163
164
fn fmt ( & self , f : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
Original file line number Diff line number Diff line change 18
18
//! functions that convert various types to `char`.
19
19
20
20
#![ allow( non_snake_case) ]
21
- #![ stable( feature = "core_char " , since = "1.2 .0" ) ]
21
+ #![ stable( feature = "rust1 " , since = "1.0 .0" ) ]
22
22
23
23
mod convert;
24
24
mod decode;
Original file line number Diff line number Diff line change @@ -481,7 +481,7 @@ pub mod prelude;
481
481
482
482
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
483
483
pub use core:: any;
484
- #[ stable( feature = "core_array" , since = "1.36 .0" ) ]
484
+ #[ stable( feature = "core_array" , since = "1.35 .0" ) ]
485
485
pub use core:: array;
486
486
#[ unstable( feature = "async_iterator" , issue = "79024" ) ]
487
487
pub use core:: async_iter;
You can’t perform that action at this time.
0 commit comments