mirror of https://github.com/rust-lang/rust
17 lines
344 B
Rust
17 lines
344 B
Rust
//@ 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() {}
|