18 lines
249 B
Rust
18 lines
249 B
Rust
// check-pass
|
|
// edition:2021
|
|
|
|
#![feature(async_fn_in_trait)]
|
|
#![allow(incomplete_features)]
|
|
|
|
pub trait Foo {
|
|
async fn foo(&mut self);
|
|
}
|
|
|
|
struct MyFoo<'a>(&'a mut ());
|
|
|
|
impl<'a> Foo for MyFoo<'a> {
|
|
async fn foo(&mut self) {}
|
|
}
|
|
|
|
fn main() {}
|