Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
ui
/
async-await
/
issues
/
issue-63388-3.rs
blob: 13682923a94ecf2e2677e048383166e459f1a7d4 [
file
] [
log
] [
blame
]
//@ edition:2018
//@ check-pass
struct
Xyz
{
a
:
u64
,
}
trait
Foo
{}
impl
Xyz
{
async
fn
do_sth
(
&
self
,
foo
:
&
dyn
Foo
)
{
}
}
fn
main
()
{}