You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
403 B
31 lines
403 B
7 months ago
|
use async_trait::async_trait;
|
||
|
|
||
|
pub struct S {}
|
||
|
|
||
|
pub enum E {
|
||
|
V {},
|
||
|
}
|
||
|
|
||
|
#[async_trait]
|
||
|
pub trait Trait {
|
||
|
async fn method(self);
|
||
|
}
|
||
|
|
||
|
#[async_trait]
|
||
|
impl Trait for S {
|
||
|
async fn method(self) {
|
||
|
let _: () = self;
|
||
|
let _: Self = Self;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#[async_trait]
|
||
|
impl Trait for E {
|
||
|
async fn method(self) {
|
||
|
let _: () = self;
|
||
|
let _: Self = Self::V;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
fn main() {}
|