summaryrefslogtreecommitdiffstats
path: root/src/test/ui/async-await/issue-64130-4-async-move.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/async-await/issue-64130-4-async-move.rs')
-rw-r--r--src/test/ui/async-await/issue-64130-4-async-move.rs32
1 files changed, 0 insertions, 32 deletions
diff --git a/src/test/ui/async-await/issue-64130-4-async-move.rs b/src/test/ui/async-await/issue-64130-4-async-move.rs
deleted file mode 100644
index a38428fc0..000000000
--- a/src/test/ui/async-await/issue-64130-4-async-move.rs
+++ /dev/null
@@ -1,32 +0,0 @@
-// edition:2018
-// revisions: no_drop_tracking drop_tracking
-// [drop_tracking] check-pass
-// [drop_tracking] compile-flags: -Zdrop-tracking=yes
-// [no_drop_tracking] compile-flags: -Zdrop-tracking=no
-use std::any::Any;
-use std::future::Future;
-
-struct Client(Box<dyn Any + Send>);
-
-impl Client {
- fn status(&self) -> u16 {
- 200
- }
-}
-
-async fn get() {}
-
-pub fn foo() -> impl Future + Send {
- //[no_drop_tracking]~^ ERROR future cannot be sent between threads safely
- let client = Client(Box::new(true));
- async move {
- match client.status() {
- 200 => {
- let _x = get().await;
- }
- _ => (),
- }
- }
-}
-
-fn main() {}