mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-22 20:47:48 +00:00
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() {}
|