diff --git a/library/core/src/array/mod.rs b/library/core/src/array/mod.rs index a7cb1023229b..806dc94376e4 100644 --- a/library/core/src/array/mod.rs +++ b/library/core/src/array/mod.rs @@ -12,7 +12,6 @@ use crate::convert::{Infallible, TryFrom}; use crate::fmt; use crate::hash::{self, Hash}; use crate::marker::Unsize; -use crate::ops::{Index, IndexMut}; use crate::slice::{Iter, IterMut}; mod iter; @@ -209,30 +208,6 @@ impl<'a, T, const N: usize> IntoIterator for &'a mut [T; N] { } } -#[stable(feature = "index_trait_on_arrays", since = "1.50.0")] -impl Index for [T; N] -where - [T]: Index, -{ - type Output = <[T] as Index>::Output; - - #[inline] - fn index(&self, index: I) -> &Self::Output { - Index::index(self as &[T], index) - } -} - -#[stable(feature = "index_trait_on_arrays", since = "1.50.0")] -impl IndexMut for [T; N] -where - [T]: IndexMut, -{ - #[inline] - fn index_mut(&mut self, index: I) -> &mut Self::Output { - IndexMut::index_mut(self as &mut [T], index) - } -} - #[stable(feature = "rust1", since = "1.0.0")] impl PartialEq<[B; N]> for [A; N] where diff --git a/src/test/ui/const_fn_vec_mutation_79152.rs b/src/test/ui/const_fn_vec_mutation_79152.rs new file mode 100644 index 000000000000..1cb14ededce2 --- /dev/null +++ b/src/test/ui/const_fn_vec_mutation_79152.rs @@ -0,0 +1,11 @@ +// check-pass + +// https://github.com/rust-lang/rust/issues/79152 +const fn foo() { + let mut array = [[0; 1]; 1]; + array[0][0] = 1; +} + +pub fn main() { + foo() +}