Sign in
android
/
platform
/
external
/
rust
/
crates
/
async-trait
/
538a063f0b27dcab291198bcf849ea8077d1e120
/
.
/
tests
/
ui
/
unsupported-self.rs
blob: 5868c614ad8cfb574532c4a520896a3dadb5d678 [
file
] [
log
] [
blame
]
use
async_trait
::
async_trait
;
#[
async_trait
]
pub
trait
Trait
{
async
fn
method
();
}
#[
async_trait
]
impl
Trait
for
&
'
static
str
{
async
fn
method
()
{
let
_
=
Self
;
}
}
fn
main
()
{}