We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 49e5e4e commit 38c5545Copy full SHA for 38c5545
library/core/src/array/mod.rs
@@ -587,7 +587,7 @@ impl<T, const N: usize> [T; N] {
587
/// Returns a mutable slice containing the entire array. Equivalent to
588
/// `&mut s[..]`.
589
#[stable(feature = "array_as_slice", since = "1.57.0")]
590
- #[rustc_const_unstable(feature = "const_array_as_mut_slice", issue = "133333")]
+ #[rustc_const_stable(feature = "const_array_as_mut_slice", since = "CURRENT_RUSTC_VERSION")]
591
pub const fn as_mut_slice(&mut self) -> &mut [T] {
592
self
593
}
0 commit comments