blob: b7573948d9a17bbfbe00d3c5b0e89138f0e4f705 [file] [log] [blame]
//@ check-pass
//@ edition:2024
fn main() {
fut(async {}.into_future(), async {});
}
fn fut(_: impl Future, _: impl IntoFuture) {}