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