diff options
| author | bors <bors@rust-lang.org> | 2022-09-26 14:22:43 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2022-09-26 14:22:43 +0000 |
| commit | e1d7dec558d863fb76f98453088b36cb1a926d48 (patch) | |
| tree | 3a8cfcc9efe63d005f678b7296755f01f01d99c2 /library/core/src/array | |
| parent | 84946fe2412194418b838c34815b79d36b22d4f8 (diff) | |
| parent | f7b0c858a5c50946537abf053549b3df98b7f76a (diff) | |
| download | rust-e1d7dec558d863fb76f98453088b36cb1a926d48.tar.gz rust-e1d7dec558d863fb76f98453088b36cb1a926d48.zip | |
Auto merge of #102051 - pietroalbini:pa-bootstrap-update, r=Mark-Simulacrum
Update bootstrap compiler to 1.65.0 This PR updates the bootstrap compiler to Rust 1.65.0, removing the various `cfg(bootstrap)`s. r? `@Mark-Simulacrum`
Diffstat (limited to 'library/core/src/array')
| -rw-r--r-- | library/core/src/array/mod.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/library/core/src/array/mod.rs b/library/core/src/array/mod.rs index 36e89a95fd2..b82bbf2267a 100644 --- a/library/core/src/array/mod.rs +++ b/library/core/src/array/mod.rs @@ -7,7 +7,6 @@ use crate::borrow::{Borrow, BorrowMut}; use crate::cmp::Ordering; use crate::convert::{Infallible, TryFrom}; -#[cfg(not(bootstrap))] use crate::error::Error; use crate::fmt; use crate::hash::{self, Hash}; @@ -121,7 +120,6 @@ impl fmt::Display for TryFromSliceError { } } -#[cfg(not(bootstrap))] #[stable(feature = "try_from", since = "1.34.0")] impl Error for TryFromSliceError { #[allow(deprecated)] |
