diff options
| author | bors <bors@rust-lang.org> | 2025-07-02 01:41:18 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2025-07-02 01:41:18 +0000 |
| commit | f51c9870bab634afb9e7a262b6ca7816bb9e940d (patch) | |
| tree | ea1ee88816482eec8f313a550497fc252bdb2230 /library/core/src/array | |
| parent | 085c24790e591948f788fd294ca3f9858313741c (diff) | |
| parent | 5b073e5ba6ce0ee6511bcc39f355c65f1b465986 (diff) | |
| download | rust-f51c9870bab634afb9e7a262b6ca7816bb9e940d.tar.gz rust-f51c9870bab634afb9e7a262b6ca7816bb9e940d.zip | |
Auto merge of #142974 - cuviper:stage0-bump, r=Mark-Simulacrum
Update stage0 to 1.89.0-beta.1 - Update version placeholders - Update stage0 to 1.89.0-beta.1 - Update `STAGE0_MISSING_TARGETS` - Update `cfg(bootstrap)` r? `@Mark-Simulacrum` try-job: dist-i586-gnu-i586-i686-musl
Diffstat (limited to 'library/core/src/array')
| -rw-r--r-- | library/core/src/array/iter.rs | 2 | ||||
| -rw-r--r-- | library/core/src/array/mod.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/library/core/src/array/iter.rs b/library/core/src/array/iter.rs index a59b2f05305..fdae5c08f1e 100644 --- a/library/core/src/array/iter.rs +++ b/library/core/src/array/iter.rs @@ -224,7 +224,7 @@ impl<T, const N: usize> IntoIter<T, N> { } } -#[stable(feature = "array_value_iter_default", since = "CURRENT_RUSTC_VERSION")] +#[stable(feature = "array_value_iter_default", since = "1.89.0")] impl<T, const N: usize> Default for IntoIter<T, N> { fn default() -> Self { IntoIter::empty() diff --git a/library/core/src/array/mod.rs b/library/core/src/array/mod.rs index 221ca91e005..5a46c04527b 100644 --- a/library/core/src/array/mod.rs +++ b/library/core/src/array/mod.rs @@ -588,7 +588,7 @@ impl<T, const N: usize> [T; N] { /// Returns a mutable slice containing the entire array. Equivalent to /// `&mut s[..]`. #[stable(feature = "array_as_slice", since = "1.57.0")] - #[rustc_const_stable(feature = "const_array_as_mut_slice", since = "CURRENT_RUSTC_VERSION")] + #[rustc_const_stable(feature = "const_array_as_mut_slice", since = "1.89.0")] pub const fn as_mut_slice(&mut self) -> &mut [T] { self } |
