-
Notifications
You must be signed in to change notification settings - Fork 12.7k
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
compile fail when using async_drop #126573
Labels
C-bug
Category: This is a bug.
F-async_drop
Async drop
T-compiler
Relevant to the compiler team, which will review and decide on the PR/issue.
Comments
rustbot
added
the
needs-triage
This issue may need triage. Remove it if it has been sufficiently triaged.
label
Jun 17, 2024
Fixed in #126594. |
GuillaumeGomez
added a commit
to GuillaumeGomez/rust
that referenced
this issue
Jun 18, 2024
…drop-glue, r=oli-obk Make async drop code more consistent with regular drop code Fixes rust-lang#126573 Relates to rust-lang#126482 r? `@petrochenkov`
jieyouxu
added a commit
to jieyouxu/rust
that referenced
this issue
Jun 19, 2024
…drop-glue, r=oli-obk Make async drop code more consistent with regular drop code Fixes rust-lang#126573 Relates to rust-lang#126482 r? ``@petrochenkov``
fmease
added a commit
to fmease/rust
that referenced
this issue
Jun 19, 2024
…drop-glue, r=oli-obk Make async drop code more consistent with regular drop code Fixes rust-lang#126573 Relates to rust-lang#126482 r? ```@petrochenkov```
fmease
added a commit
to fmease/rust
that referenced
this issue
Jun 19, 2024
…drop-glue, r=oli-obk Make async drop code more consistent with regular drop code Fixes rust-lang#126573 Relates to rust-lang#126482 r? ````@petrochenkov````
rust-timer
added a commit
to rust-lang-ci/rust
that referenced
this issue
Jun 19, 2024
Rollup merge of rust-lang#126594 - zetanumbers:fix-cross-crate-async-drop-glue, r=oli-obk Make async drop code more consistent with regular drop code Fixes rust-lang#126573 Relates to rust-lang#126482 r? ````@petrochenkov````
saethlin
added
T-compiler
Relevant to the compiler team, which will review and decide on the PR/issue.
and removed
needs-triage
This issue may need triage. Remove it if it has been sufficiently triaged.
labels
Jun 19, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
C-bug
Category: This is a bug.
F-async_drop
Async drop
T-compiler
Relevant to the compiler team, which will review and decide on the PR/issue.
in my project
I enable the async_drop feature in client workspace, then I got compile error
I expected to see this happen: compile success
Instead, this happened: compile error
Meta
rustc --version --verbose
:Backtrace
I also try to make a minimum reproducibility, but I failed, https://play.rust-lang.org/?version=nightly&mode=debug&edition=2021&gist=5c98906a97da2afc87de3a2edd72a0fe this codes can build with same rustc version
The text was updated successfully, but these errors were encountered: