about summary refs log tree commit diff
path: root/src/test/ui/async-await/issue-70818.rs
blob: 0609e4fc0817073f0782d9d0ed5b748f51561c54 (plain)
1
2
3
4
5
6
7
8
9
// edition:2018

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) }
}

fn main() {}