mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-24 13:43:17 +00:00
21 lines
249 B
Rust
21 lines
249 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(&self) -> impl Foo + '_ {
|
||
|
Baz { bar: self }
|
||
|
}
|
||
|
}
|
||
|
|
||
|
fn main() {}
|