summaryrefslogtreecommitdiffstats
path: root/tests/ui/async-await/issue-70818.rs
blob: 2941de0f57714cb36ff363c2033057617b8af6d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// revisions: no_drop_tracking drop_tracking drop_tracking_mir
// [drop_tracking] compile-flags: -Zdrop-tracking
// [drop_tracking_mir] compile-flags: -Zdrop-tracking-mir
// 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() {}