rust/tests/ui/async-await/issue-68112.rs

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

67 lines
1.5 KiB
Rust
Raw Normal View History

2020-03-25 00:23:50 +00:00
//@ edition:2018
use std::{
cell::RefCell,
2022-09-13 21:36:45 +00:00
future::Future,
2020-03-25 00:23:50 +00:00
pin::Pin,
2022-09-13 21:36:45 +00:00
sync::Arc,
2020-03-25 00:23:50 +00:00
task::{Context, Poll},
};
fn require_send(_: impl Send) {}
struct Ready<T>(Option<T>);
2023-06-24 10:02:54 +00:00
impl<T: Unpin> Future for Ready<T> {
2020-03-25 00:23:50 +00:00
type Output = T;
fn poll(mut self: Pin<&mut Self>, _cx: &mut Context<'_>) -> Poll<T> {
Poll::Ready(self.0.take().unwrap())
}
}
fn ready<T>(t: T) -> Ready<T> {
Ready(Some(t))
}
fn make_non_send_future1() -> impl Future<Output = Arc<RefCell<i32>>> {
ready(Arc::new(RefCell::new(0)))
}
fn test1() {
let send_fut = async {
let non_send_fut = make_non_send_future1();
let _ = non_send_fut.await;
ready(0).await;
};
require_send(send_fut);
//~^ ERROR future cannot be sent between threads
}
2020-04-02 02:04:55 +00:00
fn test1_no_let() {
let send_fut = async {
let _ = make_non_send_future1().await;
ready(0).await;
};
require_send(send_fut);
//~^ ERROR future cannot be sent between threads
}
2022-09-13 21:36:45 +00:00
async fn ready2<T>(t: T) -> T {
t
}
2020-03-25 00:23:50 +00:00
fn make_non_send_future2() -> impl Future<Output = Arc<RefCell<i32>>> {
ready2(Arc::new(RefCell::new(0)))
}
2020-04-08 18:54:31 +00:00
// Ideally this test would have diagnostics similar to the test above, but right
// now it doesn't.
2020-03-25 00:23:50 +00:00
fn test2() {
let send_fut = async {
let non_send_fut = make_non_send_future2();
let _ = non_send_fut.await;
ready(0).await;
};
require_send(send_fut);
//~^ ERROR `RefCell<i32>` cannot be shared between threads safely
2020-03-25 00:23:50 +00:00
}
fn main() {}