mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 17:14:50 +00:00
14 lines
190 B
Rust
14 lines
190 B
Rust
//@ check-pass
|
|
//@ edition:2021
|
|
|
|
pub trait Foo {
|
|
#[allow(async_fn_in_trait)]
|
|
async fn foo(&mut self);
|
|
}
|
|
|
|
impl<T: Foo> Foo for &mut T {
|
|
async fn foo(&mut self) {}
|
|
}
|
|
|
|
fn main() {}
|