rust-clippy/tests/ui/crashes/needless_lifetimes_impl_trait.rs

21 lines
258 B
Rust
Raw Normal View History

2018-07-30 09:33:44 +00:00
#![deny(clippy::needless_lifetimes)]
2017-08-01 15:54:21 +00:00
#![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() {}