about summary refs log tree commit diff
path: root/src/test/ui/async-await/issue-67252-unnamed-future.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/async-await/issue-67252-unnamed-future.rs')
-rw-r--r--src/test/ui/async-await/issue-67252-unnamed-future.rs24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/test/ui/async-await/issue-67252-unnamed-future.rs b/src/test/ui/async-await/issue-67252-unnamed-future.rs
deleted file mode 100644
index 1a7ff613341..00000000000
--- a/src/test/ui/async-await/issue-67252-unnamed-future.rs
+++ /dev/null
@@ -1,24 +0,0 @@
-// 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
-        let _a = std::ptr::null_mut::<()>(); // `*mut ()` is not `Send`
-        AFuture.await;
-    });
-}
-
-fn main() {}