diff options
| author | bors <bors@rust-lang.org> | 2024-02-19 13:41:13 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2024-02-19 13:41:13 +0000 |
| commit | e29a1530f670d66f617f7aac8601920a87263ac6 (patch) | |
| tree | 15b760fb602a870653fdfc0fff6ac294ea8bd930 /library/std | |
| parent | 43d3470f11a18d7bfa0b288954bf327cbf7549ab (diff) | |
| parent | 3fe809b38de2597f211a149e87eee15ea8f5ccdd (diff) | |
| download | rust-e29a1530f670d66f617f7aac8601920a87263ac6.tar.gz rust-e29a1530f670d66f617f7aac8601920a87263ac6.zip | |
Auto merge of #121295 - matthiaskrgr:rollup-j2vffew, r=matthiaskrgr
Rollup of 6 pull requests Successful merges: - #119808 (Store core::str::CharSearcher::utf8_size as u8) - #121032 (Continue reporting remaining errors instead of silently dropping them) - #121041 (Add `Future` and `IntoFuture` to the 2024 prelude) - #121230 (Extend Level API) - #121272 (Add diagnostic items for legacy numeric constants) - #121275 (add test for panicking attribute macros) r? `@ghost` `@rustbot` modify labels: rollup
Diffstat (limited to 'library/std')
| -rw-r--r-- | library/std/src/prelude/mod.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/library/std/src/prelude/mod.rs b/library/std/src/prelude/mod.rs index 1b29c887d21..7d44d2e4b5d 100644 --- a/library/std/src/prelude/mod.rs +++ b/library/std/src/prelude/mod.rs @@ -132,13 +132,13 @@ pub mod rust_2021 { /// The 2024 version of the prelude of The Rust Standard Library. /// /// See the [module-level documentation](self) for more. -#[unstable(feature = "prelude_2024", issue = "none")] +#[unstable(feature = "prelude_2024", issue = "121042")] pub mod rust_2024 { - #[unstable(feature = "prelude_2024", issue = "none")] + #[unstable(feature = "prelude_2024", issue = "121042")] #[doc(no_inline)] pub use super::v1::*; - #[unstable(feature = "prelude_2024", issue = "none")] + #[unstable(feature = "prelude_2024", issue = "121042")] #[doc(no_inline)] pub use core::prelude::rust_2024::*; } |
