Sign in
android
/
platform
/
external
/
rust
/
crates
/
async-trait
/
10bac11a4d79990cae682f957fa5b018a4bf654d
/
.
/
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
()
{}