2020-08-01 11:29:21 -05:00
|
|
|
// edition:2018
|
2022-10-01 05:19:31 -05:00
|
|
|
// revisions: no_drop_tracking drop_tracking drop_tracking_mir
|
|
|
|
// [drop_tracking] compile-flags: -Zdrop-tracking
|
|
|
|
// [drop_tracking_mir] compile-flags: -Zdrop-tracking-mir
|
2020-08-01 11:29:21 -05:00
|
|
|
// #70935: Check if we do not emit snippet
|
|
|
|
// with newlines which lead complex diagnostics.
|
|
|
|
|
|
|
|
use std::future::Future;
|
|
|
|
|
|
|
|
async fn baz<T>(_c: impl FnMut() -> T) where T: Future<Output=()> {
|
|
|
|
}
|
|
|
|
|
|
|
|
fn foo(tx: std::sync::mpsc::Sender<i32>) -> impl Future + Send {
|
2022-09-13 16:38:28 -05:00
|
|
|
//[no_drop_tracking]~^ ERROR future cannot be sent between threads safely
|
2023-01-25 21:51:26 -06:00
|
|
|
//[drop_tracking,drop_tracking_mir]~^^ ERROR `Sender<i32>` cannot be shared between threads
|
2020-08-01 11:29:21 -05:00
|
|
|
async move {
|
2022-07-01 00:05:00 -05:00
|
|
|
baz(|| async{
|
2020-08-01 11:29:21 -05:00
|
|
|
foo(tx.clone());
|
|
|
|
}).await;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn bar(_s: impl Future + Send) {
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let (tx, _rx) = std::sync::mpsc::channel();
|
|
|
|
bar(foo(tx));
|
|
|
|
}
|