about summary refs log tree commit diff
path: root/library/std/src
diff options
context:
space:
mode:
authorNilstrieb <48135649+Nilstrieb@users.noreply.github.com>2024-02-13 18:35:17 +0100
committerNilstrieb <48135649+Nilstrieb@users.noreply.github.com>2024-02-18 23:20:05 +0100
commitbd8a1a417ad778574c06875639b23699e9501a85 (patch)
tree8636ea1b0909262428f39e39709859c9c5ff0393 /library/std/src
parent8a497723e311a62fccb1f0bf40e79c6519744a12 (diff)
Add `Future` and `IntoFuture` to the 2024 prelude
Implements RFC 3509.
Diffstat (limited to 'library/std/src')
-rw-r--r--library/std/src/prelude/mod.rs6
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::*;
 }