mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 00:47:16 +00:00
20 lines
256 B
Rust
20 lines
256 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() {}
|