Skip to content
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

Dropped non-Send incorrectly reported as living, resulting in non-Send Future #136060

Closed
TommasoTricker opened this issue Jan 25, 2025 · 1 comment
Labels
C-bug Category: This is a bug.

Comments

@TommasoTricker
Copy link

TommasoTricker commented Jan 25, 2025

This:

struct NonSend(*const ());

impl NonSend {
	fn noop(&self) {}
}

fn main() {
	assert_send(async {
		let x = NonSend(core::ptr::null());
		x.noop();
		drop(x);
		async {}.await;
	});
}

fn assert_send(_: impl Send) {}

Playground

Errors with:

error: future cannot be sent between threads safely
  --> src/main.rs:8:2
   |
8  | /     assert_send(async {
9  | |         let x = NonSend(core::ptr::null());
10 | |         x.noop();
11 | |         drop(x);
12 | |         async {}.await;
13 | |     });
   | |______^ future created by async block is not `Send`
   |
   = help: within `{async block@src/main.rs:8:14: 8:19}`, the trait `Send` is not implemented for `*const ()`
note: future is not `Send` as this value is used across an await
  --> src/main.rs:12:12
   |
9  |         let x = NonSend(core::ptr::null());
   |             - has type `NonSend` which is not `Send`
...
12 |         async {}.await;
   |                  ^^^^^ await occurs here, with `x` maybe used later
note: required by a bound in `assert_send`
  --> src/main.rs:16:24
   |
16 | fn assert_send(_: impl Send) {}
   |                        ^^^^ required by this bound in `assert_send`

error: could not compile `playground` (bin "playground") due to 1 previous error

It states that the non-Send x might be used across the await; however, this is not possible, as it has been dropped.

@TommasoTricker TommasoTricker added the C-bug Category: This is a bug. label Jan 25, 2025
@rustbot rustbot added the needs-triage This issue may need triage. Remove it if it has been sufficiently triaged. label Jan 25, 2025
@theemathas
Copy link
Contributor

Duplicate of #63768

@jieyouxu jieyouxu removed the needs-triage This issue may need triage. Remove it if it has been sufficiently triaged. label Feb 4, 2025
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.
Projects
None yet
Development

No branches or pull requests

5 participants