Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
async-await
/
issues
/
issue-58885.rs
blob: bae92075dec3511ff62a063522bbf4c725dd8af5 [
file
] [
log
] [
blame
] [
edit
]
//@ check-pass
//@ edition:2018
struct
Xyz
{
a
:
u64
,
}
trait
Foo
{}
impl
Xyz
{
async
fn
do_sth
<
'
a
>(
&
'a self, foo: &'
a dyn
Foo
)
->
bool
{
true
}
}
fn
main
()
{}