rust/tests/ui/async-await/issue-67252-unnamed-future.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
525 B
Rust
Raw Permalink Normal View History

2019-12-13 17:27:55 -06:00
//@ edition:2018
use std::future::Future;
use std::pin::Pin;
use std::task::{Context, Poll};
fn spawn<T: Send>(_: T) {}
pub struct AFuture;
impl Future for AFuture{
type Output = ();
fn poll(mut self: Pin<&mut Self>, _: &mut Context<'_>) -> Poll<()> {
unimplemented!()
}
}
async fn foo() {
spawn(async { //~ ERROR future cannot be sent between threads safely
2023-06-24 05:02:54 -05:00
let a = std::ptr::null_mut::<()>(); // `*mut ()` is not `Send`
2019-12-13 17:27:55 -06:00
AFuture.await;
2023-06-24 05:02:54 -05:00
let _a = a;
2019-12-13 17:27:55 -06:00
});
}
fn main() {}