blob: fd6902071188c9533fffc7213e78c1e38c21e747 [file] [log] [blame] [edit]
//@ check-pass
//@ edition:2018
struct Foo<'a>(&'a ());
impl<'a> Foo<'a> {
async fn foo<'b>(self: &'b Foo<'a>) -> &() { self.0 }
//~^ WARNING elided lifetime has a name
}
type Alias = Foo<'static>;
impl Alias {
async fn bar<'a>(self: &Alias, arg: &'a ()) -> &() { arg }
//~^ WARNING elided lifetime has a name
}
fn main() {}