Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
async-await
/
in-trait
/
early-bound-1.rs
blob: fd1282908abecb2931d181c7b04c64489055b400 [
file
] [
log
] [
blame
] [
edit
]
//@ check-pass
//@ edition:2021
pub
trait
Foo
{
#[
allow
(
async_fn_in_trait
)]
async
fn
foo
(&
mut
self
);
}
struct
MyFoo
<
'a>(&'
a
mut
());
impl
<
'a> Foo for MyFoo<'
a
>
{
async
fn
foo
(&
mut
self
)
{}
}
fn
main
()
{}