2022-10-23 22:33:42 -05:00
|
|
|
//@ check-pass
|
|
|
|
//@ edition:2021
|
|
|
|
|
|
|
|
pub trait Foo {
|
2023-09-26 15:20:25 -05:00
|
|
|
#[allow(async_fn_in_trait)]
|
2022-10-23 22:33:42 -05:00
|
|
|
async fn bar<'a: 'a>(&'a mut self);
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Foo for () {
|
|
|
|
async fn bar<'a: 'a>(&'a mut self) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub trait Foo2 {
|
|
|
|
fn bar<'a: 'a>(&'a mut self) -> impl Sized + 'a;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Foo2 for () {
|
|
|
|
fn bar<'a: 'a>(&'a mut self) -> impl Sized + 'a {}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|