diff options
| author | bors <bors@rust-lang.org> | 2021-12-03 19:29:21 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2021-12-03 19:29:21 +0000 |
| commit | 532d2b14c05f9bc20b2d27cbb5f4550d28343a36 (patch) | |
| tree | f5cd6b242f405ec86b164ecfe8faf283d064ea75 /compiler/rustc_span/src | |
| parent | ff2439b7b9bafcfdff86b7847128014699df8442 (diff) | |
| parent | 3268bf1d31227d0422c90b2259e67ba12ed19e3f (diff) | |
| download | rust-532d2b14c05f9bc20b2d27cbb5f4550d28343a36.tar.gz rust-532d2b14c05f9bc20b2d27cbb5f4550d28343a36.zip | |
Auto merge of #90737 - eholk:intofuture, r=tmandry
Reintroduce `into_future` in `.await` desugaring This is a reintroduction of the remaining parts from https://github.com/rust-lang/rust/pull/65244 that have not been relanded yet. This isn't quite ready to merge yet. The last attempt was reverting due to performance regressions, so we need to make sure this does not introduce those issues again. Issues #67644, #67982 /cc `@yoshuawuyts`
Diffstat (limited to 'compiler/rustc_span/src')
| -rw-r--r-- | compiler/rustc_span/src/symbol.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/compiler/rustc_span/src/symbol.rs b/compiler/rustc_span/src/symbol.rs index dd6ce60abfb..06e4cee30ed 100644 --- a/compiler/rustc_span/src/symbol.rs +++ b/compiler/rustc_span/src/symbol.rs @@ -196,6 +196,7 @@ symbols! { Implied, Input, Into, + IntoFuture, IntoIterator, IoRead, IoWrite, @@ -737,6 +738,7 @@ symbols! { inout, instruction_set, intel, + into_future, into_iter, intra_doc_pointers, intrinsics, |
