Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
async-await
/
in-trait
/
fn-not-async-err.rs
blob: a67f7fd182c5e766aa2e011738c4283f05dca7b8 [
file
] [
log
] [
blame
] [
edit
]
//@ edition: 2021
trait
MyTrait
{
async
fn
foo
(&
self
)
->
i32
;
}
impl
MyTrait
for
i32
{
fn
foo
(&
self
)
->
i32
{
//~^ ERROR: method should be `async` or return a future, but it is synchronous
*
self
}
}
fn
main
()
{}