Sign in
android
/
platform
/
external
/
rust
/
crates
/
async-trait
/
refs/heads/main
/
.
/
tests
/
ui
/
no-attribute-macro.rs
blob: c0fb431bf391eb487096d98afc66ce08152d3315 [
file
] [
log
] [
blame
]
Jeff Vander Stoep
a414c4b
2023-11-24 15:39:09 +0100
[
diff
] [
blame
]
1
pub
trait
Trait
{
2
async
fn
method
(&
self
);
3
}
4
5
pub
struct
Struct
;
6
7
impl
Trait
for
Struct
{
8
async
fn
method
(&
self
)
{}
9
}
10
11
fn
main
()
{
12
let
_
:
&
dyn
Trait
;
13
}