mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
22 lines
283 B
Rust
22 lines
283 B
Rust
#![feature(tool_lints)]
|
|
|
|
#![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() {}
|