diff options
| author | Michael Goulet <michael@errs.io> | 2024-01-24 22:27:25 +0000 |
|---|---|---|
| committer | Michael Goulet <michael@errs.io> | 2024-02-06 02:22:58 +0000 |
| commit | a82bae2172499864c12a1d0b412931ad884911f7 (patch) | |
| tree | c7299fdfd83be3818fcffdb86639146c9d29bb69 /compiler/rustc_span/src/symbol.rs | |
| parent | c567eddec2c628d4f13707866731e1b2013ad236 (diff) | |
| download | rust-a82bae2172499864c12a1d0b412931ad884911f7.tar.gz rust-a82bae2172499864c12a1d0b412931ad884911f7.zip | |
Teach typeck/borrowck/solvers how to deal with async closures
Diffstat (limited to 'compiler/rustc_span/src/symbol.rs')
| -rw-r--r-- | compiler/rustc_span/src/symbol.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/compiler/rustc_span/src/symbol.rs b/compiler/rustc_span/src/symbol.rs index dbfc89c2d49..587eb1c7cc5 100644 --- a/compiler/rustc_span/src/symbol.rs +++ b/compiler/rustc_span/src/symbol.rs @@ -167,6 +167,9 @@ symbols! { Break, C, CStr, + CallFuture, + CallMutFuture, + CallOnceFuture, Capture, Center, Cleanup, @@ -420,6 +423,7 @@ symbols! { async_closure, async_fn, async_fn_in_trait, + async_fn_kind_helper, async_fn_mut, async_fn_once, async_fn_track_caller, |
