about summary refs log tree commit diff
path: root/library/core/src/future
diff options
context:
space:
mode:
authorEric Huss <eric@huss.org>2022-01-30 08:37:46 -0800
committerGitHub <noreply@github.com>2022-01-30 08:37:46 -0800
commit0610d4fa66f95fa3a4a7af86239976ed668bab0e (patch)
tree077c6754dc195449445e9089af4f2fccd3de9667 /library/core/src/future
parent7cc28c128be0363d83accf318b87b40ba6168384 (diff)
parent5b3462c556932234c6bae24c6f90c55a463f23c3 (diff)
downloadrust-0610d4fa66f95fa3a4a7af86239976ed668bab0e.tar.gz
rust-0610d4fa66f95fa3a4a7af86239976ed668bab0e.zip
Rollup merge of #92887 - pietroalbini:pa-bootstrap-update, r=Mark-Simulacrum
Bootstrap compiler update

r? ``@Mark-Simulacrum``
Diffstat (limited to 'library/core/src/future')
-rw-r--r--library/core/src/future/into_future.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/core/src/future/into_future.rs b/library/core/src/future/into_future.rs
index cac1866188e..0912f8675fa 100644
--- a/library/core/src/future/into_future.rs
+++ b/library/core/src/future/into_future.rs
@@ -13,7 +13,7 @@ pub trait IntoFuture {
 
     /// Creates a future from a value.
     #[unstable(feature = "into_future", issue = "67644")]
-    #[cfg_attr(not(bootstrap), lang = "into_future")]
+    #[lang = "into_future"]
     fn into_future(self) -> Self::Future;
 }