2022-11-01 17:28:40 -05:00
|
|
|
// check-pass
|
|
|
|
// edition:2021
|
2023-03-07 15:26:02 -06:00
|
|
|
// [next] compile-flags: -Zlower-impl-trait-in-trait-to-assoc-ty
|
|
|
|
// revisions: current next
|
2022-11-01 17:28:40 -05:00
|
|
|
|
|
|
|
#![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() {}
|