blob: 5d11dd232185b57872fd28716d9f312ccd4eae58 [file] [log] [blame]
//@ edition:2021
pub trait T {}
impl T for () {}
pub struct S {}
impl S {
pub async fn f<'a>(&self) -> impl T + 'a {
()
}
}