mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-15 09:27:25 +00:00
6b59675449
It does not seem to be necessary
20 lines
258 B
Rust
20 lines
258 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<'a>(&'a self) -> impl Foo + 'a {
|
|
Baz { bar: self }
|
|
}
|
|
}
|
|
|
|
fn main() {}
|