mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-15 01:17:16 +00:00
38d4ac7cea
Discussion previously happened in https://github.com/rust-lang/rust/pull/43498
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() {}
|