Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
rust-2024
/
prelude2024.rs
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
)
{}