rustc/tests/ui/rust-2024/prelude2024.rs
2025-02-17 11:14:05 +01:00

9 lines
137 B
Rust

//@ check-pass
//@ edition:2024
fn main() {
fut(async {}.into_future(), async {});
}
fn fut(_: impl Future, _: impl IntoFuture) {}