about summary refs log tree commit diff
path: root/tests/ui/async-await/issue-70818.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/async-await/issue-70818.rs')
-rw-r--r--tests/ui/async-await/issue-70818.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/ui/async-await/issue-70818.rs b/tests/ui/async-await/issue-70818.rs
index bc181de8d92..c11332fe7d8 100644
--- a/tests/ui/async-await/issue-70818.rs
+++ b/tests/ui/async-await/issue-70818.rs
@@ -4,6 +4,7 @@ use std::future::Future;
 fn foo<T: Send, U>(ty: T, ty1: U) -> impl Future<Output = (T, U)> + Send {
     //~^ ERROR future cannot be sent between threads safely
     async { (ty, ty1) }
+    //~^ ERROR future cannot be sent between threads safely
 }
 
 fn main() {}