Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
async-await
/
async-fn
/
wrong-trait.rs
blob: e6fb0b46712de0df726e90fde6daa3e386b89aa8 [
file
] [
log
] [
blame
] [
edit
]
//@ edition:2018
#![
feature
(
async_closure
)]
trait
Foo
{}
fn
test
(
x
:
impl
async
Foo
)
{}
//~^ ERROR `async` bound modifier only allowed on `Fn`/`FnMut`/`FnOnce` traits
fn
main
()
{}