Sign in
fuchsia
/
third_party
/
rust
/
79e46694de009c8c826cafecb85f2bd3377b303a
/
.
/
tests
/
rustdoc
/
inline_cross
/
auxiliary
/
async-fn.rs
blob: 1a1a5f44af9088095dd0f94a1ef58f0fcb026417 [
file
]
//@ edition: 2021
pub
async
fn
load
()
->
i32
{
0
}
pub
trait
Load
{
async
fn
run
(&
self
)
->
i32
;
}
pub
struct
Loader
;
impl
Load
for
Loader
{
async
fn
run
(&
self
)
->
i32
{
1
}
}