blob: 8bd9eea75bb26006e0bbf16e363c4d7e5a5fd24b [file] [log] [blame]
#![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() {}