mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
22 lines
304 B
Rust
22 lines
304 B
Rust
#![feature(plugin)]
|
|
#![plugin(clippy)]
|
|
#![feature(conservative_impl_trait)]
|
|
#![deny(needless_lifetime)]
|
|
|
|
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() {}
|