about summary refs log tree commit diff
path: root/library/core/src/array
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2021-05-25 05:48:00 +0000
committerbors <bors@rust-lang.org>2021-05-25 05:48:00 +0000
commita7890c7952bdc9445eb6c63dc671fa7a1ab0260d (patch)
tree4ebf52b29d938f0de13b22d5d34fa6a570e14e2a /library/core/src/array
parentd568d63b1f9f5fc47e4202e2a2a84142ff6202d8 (diff)
parent9e22b844ddf503adba315aac4d05909bd947dafe (diff)
downloadrust-a7890c7952bdc9445eb6c63dc671fa7a1ab0260d.tar.gz
rust-a7890c7952bdc9445eb6c63dc671fa7a1ab0260d.zip
Auto merge of #84985 - pietroalbini:bootstrap-1.54, r=Mark-Simulacrum
Bump bootstrap compiler to beta 1.53.0

This PR bumps the bootstrap compiler to version 1.53.0 beta, as part of our usual release process (this was supposed to be Wednesday's step, but creating the beta release took longer than expected).

The PR also includes the "Bootstrap: skip rustdoc fingerprint for building docs" commit, see the reasoning [on Zulip](https://zulip-archive.rust-lang.org/241545trelease/88450153betabootstrap.html).

r? `@Mark-Simulacrum`
Diffstat (limited to 'library/core/src/array')
-rw-r--r--library/core/src/array/mod.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/library/core/src/array/mod.rs b/library/core/src/array/mod.rs
index 2cef3a647ff..e25d006d213 100644
--- a/library/core/src/array/mod.rs
+++ b/library/core/src/array/mod.rs
@@ -156,7 +156,6 @@ impl<T: fmt::Debug, const N: usize> fmt::Debug for [T; N] {
 // Note: the `#[rustc_skip_array_during_method_dispatch]` on `trait IntoIterator`
 // hides this implementation from explicit `.into_iter()` calls on editions < 2021,
 // so those calls will still resolve to the slice implementation, by reference.
-#[cfg(not(bootstrap))]
 #[stable(feature = "array_into_iter_impl", since = "1.53.0")]
 impl<T, const N: usize> IntoIterator for [T; N] {
     type Item = T;