mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
18 lines
296 B
Rust
18 lines
296 B
Rust
//@ check-pass
|
|
//@ edition: 2021
|
|
|
|
// regression test for #116242.
|
|
use std::future;
|
|
|
|
fn main() {
|
|
let mut recv = future::ready(());
|
|
let _combined_fut = async {
|
|
let _ = || read(&mut recv);
|
|
};
|
|
|
|
drop(recv);
|
|
}
|
|
|
|
fn read<F: future::Future>(_: &mut F) -> F::Output {
|
|
todo!()
|
|
}
|