Sign in
android
/
platform
/
external
/
rust
/
crates
/
async-trait
/
refs/heads/android13-d4-release
/
.
/
tests
/
ui
/
missing-async-in-impl.rs
blob: 3a5f58c3ace29f188515f1d93b116cc5f0dcc9d1 [
file
] [
log
] [
blame
] [
edit
]
use
async_trait
::
async_trait
;
#[
async_trait
]
pub
trait
Trait
{
async
fn
method
();
}
pub
struct
Struct
;
#[
async_trait
]
impl
Trait
for
Struct
{
fn
method
()
{}
}
fn
main
()
{}