22 lines
318 B
Rust
22 lines
318 B
Rust
#![deny(clippy::needless_lifetimes)]
|
|
#![allow(dead_code)]
|
|
|
|
trait Foo {}
|
|
|
|
struct Bar;
|
|
|
|
struct Baz<'a> {
|
|
bar: &'a Bar,
|
|
}
|
|
|
|
impl Foo for Baz<'_> {}
|
|
|
|
impl Bar {
|
|
fn baz(&self) -> impl Foo + '_ {
|
|
//~^ ERROR: the following explicit lifetimes could be elided: 'a
|
|
Baz { bar: self }
|
|
}
|
|
}
|
|
|
|
fn main() {}
|