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