Sign in
android
/
platform
/
external
/
rust
/
crates
/
async-trait
/
3ca5ea6709de08c0de2f4c45cc32acb5c652a813
/
.
/
tests
/
ui
/
delimiter-span.rs
blob: 68456fa1dd94abd2ec6b30155ee32853e6a5a6e4 [
file
] [
log
] [
blame
]
use
async_trait
::
async_trait
;
macro_rules
!
picky
{
(
ident
)
=>
{};
}
#[
async_trait
]
trait
Trait
{
async
fn
method
();
}
struct
Struct
;
#[
async_trait
]
impl
Trait
for
Struct
{
async
fn
method
()
{
picky
!({
123
});
}
}
fn
main
()
{}