diff options
| author | bors <bors@rust-lang.org> | 2025-08-07 10:56:05 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2025-08-07 10:56:05 +0000 |
| commit | cd434309efcf5dc68b253e5ef6ba40c1c43711c9 (patch) | |
| tree | ae2e38c93db6324c7d3459220233b73cda9b0644 /library/core/src/array | |
| parent | 9b1a30e5e69e1537ef6eb6eb829eb47075206dea (diff) | |
| parent | 7bc34622f037fedf3cf15c4a6beea1b40494cb2f (diff) | |
| download | rust-cd434309efcf5dc68b253e5ef6ba40c1c43711c9.tar.gz rust-cd434309efcf5dc68b253e5ef6ba40c1c43711c9.zip | |
Auto merge of #144997 - BoxyUwU:bootstrap_bump, r=Mark-Simulacrum
bump bootstrap compiler to 1.90 beta There were significantly less `cfg(bootstrap)` and `cfg(not(bootstrap))` this release. Presumably due to the fact that we change the bootstrap stage orderings to reduce the need for them and it was successful :pray:
Diffstat (limited to 'library/core/src/array')
| -rw-r--r-- | library/core/src/array/mod.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/core/src/array/mod.rs b/library/core/src/array/mod.rs index 1c23218552a..b3a498570f9 100644 --- a/library/core/src/array/mod.rs +++ b/library/core/src/array/mod.rs @@ -378,7 +378,7 @@ impl<'a, T, const N: usize> IntoIterator for &'a mut [T; N] { #[rustc_const_unstable(feature = "const_index", issue = "143775")] impl<T, I, const N: usize> const Index<I> for [T; N] where - [T]: ~const Index<I>, + [T]: [const] Index<I>, { type Output = <[T] as Index<I>>::Output; @@ -392,7 +392,7 @@ where #[rustc_const_unstable(feature = "const_index", issue = "143775")] impl<T, I, const N: usize> const IndexMut<I> for [T; N] where - [T]: ~const IndexMut<I>, + [T]: [const] IndexMut<I>, { #[inline] fn index_mut(&mut self, index: I) -> &mut Self::Output { |
