mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-19 02:13:57 +00:00
10 lines
175 B
Rust
10 lines
175 B
Rust
//@ check-pass
|
|
//@ compile-flags: -Zunstable-options
|
|
//@ edition:2024
|
|
|
|
fn main() {
|
|
fut(async {}.into_future(), async {});
|
|
}
|
|
|
|
fn fut(_: impl Future, _: impl IntoFuture) {}
|