2018-07-30 11:33:44 +02:00
|
|
|
#![deny(clippy::needless_lifetimes)]
|
2017-08-01 17:54:21 +02:00
|
|
|
#![allow(dead_code)]
|
2016-12-22 15:51:59 +01:00
|
|
|
|
|
|
|
trait Foo {}
|
|
|
|
|
2022-04-07 18:39:59 +01:00
|
|
|
struct Bar;
|
2016-12-22 15:51:59 +01:00
|
|
|
|
|
|
|
struct Baz<'a> {
|
|
|
|
bar: &'a Bar,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> Foo for Baz<'a> {}
|
|
|
|
|
|
|
|
impl Bar {
|
|
|
|
fn baz<'a>(&'a self) -> impl Foo + 'a {
|
2023-08-24 21:32:12 +02:00
|
|
|
//~^ ERROR: the following explicit lifetimes could be elided: 'a
|
2016-12-22 15:51:59 +01:00
|
|
|
Baz { bar: self }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|