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