File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -104,7 +104,7 @@ pub fn repeat<T: Clone, const N: usize>(val: T) -> [T; N] {
104104/// ```
105105#[ inline]
106106#[ stable( feature = "array_from_fn" , since = "1.63.0" ) ]
107- #[ rustc_const_unstable( feature = "const_array" , issue = "147606 " ) ]
107+ #[ rustc_const_unstable( feature = "const_array" , issue = "none " ) ]
108108pub const fn from_fn< T : [ const ] Destruct , const N : usize , F > ( f : F ) -> [ T ; N ]
109109where
110110 F : [ const ] FnMut ( usize ) -> T + [ const ] Destruct ,
@@ -545,7 +545,7 @@ impl<T, const N: usize> [T; N] {
545545 /// ```
546546 #[ must_use]
547547 #[ stable( feature = "array_map" , since = "1.55.0" ) ]
548- #[ rustc_const_unstable( feature = "const_array" , issue = "147606 " ) ]
548+ #[ rustc_const_unstable( feature = "const_array" , issue = "none " ) ]
549549 pub const fn map< F , U > ( self , f : F ) -> [ U ; N ]
550550 where
551551 F : [ const ] FnMut ( T ) -> U + [ const ] Destruct ,
You can’t perform that action at this time.
0 commit comments