mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-25 16:24:46 +00:00
16 lines
219 B
Rust
16 lines
219 B
Rust
// check-pass
|
|
// edition:2021
|
|
|
|
#![feature(async_fn_in_trait)]
|
|
#![allow(incomplete_features)]
|
|
|
|
pub trait Foo {
|
|
async fn foo(&mut self);
|
|
}
|
|
|
|
impl<T: Foo> Foo for &mut T {
|
|
async fn foo(&mut self) {}
|
|
}
|
|
|
|
fn main() {}
|