-
Notifications
You must be signed in to change notification settings - Fork 13.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Regression/ICE: moving both a Copy
type and a !Copy
type into async move || { ... }
(async_closure
)
#124487
Labels
A-async-closures
`async || {}`
C-bug
Category: This is a bug.
requires-nightly
This issue requires a nightly compiler in some way.
Comments
Nightly-only features aren't typically regression triaged. I'll look into it soon. |
matthiaskrgr
added a commit
to matthiaskrgr/rust
that referenced
this issue
May 22, 2024
…cy, r=oli-obk Force the inner coroutine of an async closure to `move` if the outer closure is `move` and `FnOnce` See the detailed comment in `upvar.rs`. Fixes rust-lang#124867. Fixes rust-lang#124487. r? oli-obk
fmease
added a commit
to fmease/rust
that referenced
this issue
May 22, 2024
…cy, r=oli-obk Force the inner coroutine of an async closure to `move` if the outer closure is `move` and `FnOnce` See the detailed comment in `upvar.rs`. Fixes rust-lang#124867. Fixes rust-lang#124487. r? oli-obk
rust-timer
added a commit
to rust-lang-ci/rust
that referenced
this issue
May 22, 2024
Rollup merge of rust-lang#125306 - compiler-errors:closure-incongruency, r=oli-obk Force the inner coroutine of an async closure to `move` if the outer closure is `move` and `FnOnce` See the detailed comment in `upvar.rs`. Fixes rust-lang#124867. Fixes rust-lang#124487. r? oli-obk
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
A-async-closures
`async || {}`
C-bug
Category: This is a bug.
requires-nightly
This issue requires a nightly compiler in some way.
Code
I tried this code (minimized):
I expected to see this happen: Compiles
Instead, this happened (
nightly-2024-02-09
):Instead, this happened (latest nightly): ICE
Versions
working -> error
Related: #120361
Mentioning @compiler-errors 😉
error -> ICE
Best guess: #123350
Backtrace
@rustbot modify labels: +regression-from-nightly-to-nightly -regression-untriaged
Thanks for investigating!
Workaround
async move || { ... }
->move || async move { ... }
The text was updated successfully, but these errors were encountered: