Sign in
rust
/
rust-lang
/
rust
/
refs/heads/lcnr/rustc-dev-guide
/
.
/
tests
/
ui
/
async-await
/
in-trait
/
bad-signatures.rs
blob: 57a0ccb0d18e0748fe9a071ad0e88b9df41988ea [
file
] [
log
] [
blame
]
//@ edition:2021
trait
MyTrait
{
async
fn
bar
(&
abc
self
);
//~^ ERROR expected identifier, found keyword `self`
//~| ERROR expected one of `:`, `@`, or `|`, found keyword `self`
}
impl
MyTrait
for
()
{
async
fn
bar
(&
self
)
{}
}
fn
main
()
{}