blob: 33da7d828c79bf137712268fd15e795c079be9c4 [file] [log] [blame] [edit]
//@ 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() {}