Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
async-await
/
in-trait
/
async-example-desugared.rs
blob: 149a880ad754ad3c2e4d0f51f40efbeaaa0eda63 [
file
] [
log
] [
blame
] [
edit
]
//@ check-pass
//@ edition: 2021
use
std
::
future
::
Future
;
trait
MyTrait
{
#[
allow
(
async_fn_in_trait
)]
async
fn
foo
(&
self
)
->
i32
;
}
impl
MyTrait
for
i32
{
fn
foo
(&
self
)
->
impl
Future
<
Output
=
i32
>
{
async
{
*
self
}
}
}
fn
main
()
{}