Sign in
rust
/
rust-lang
/
rust
/
refs/heads/perf-tmp
/
.
/
tests
/
ui
/
rust-2024
/
prelude2024.rs
blob: b7573948d9a17bbfbe00d3c5b0e89138f0e4f705 [
file
] [
log
] [
blame
]
//@ check-pass
//@ edition:2024
fn
main
()
{
fut
(
async
{}.
into_future
(),
async
{});
}
fn
fut
(
_
:
impl
Future
,
_
:
impl
IntoFuture
)
{}