summary refs log tree commit diff
path: root/tests/ui/rust-2024/prelude2024.rs
blob: e58ebe74188f3125cfb0fc2dacbe4838cc22c3ed (plain)
1
2
3
4
5
6
7
8
9
//@ check-pass
//@ compile-flags: -Zunstable-options
//@ edition:2024

fn main() {
    fut(async {}.into_future(), async {});
}

fn fut(_: impl Future, _: impl IntoFuture) {}