rust-clippy/tests/run-pass/needless_lifetimes_impl_trait.rs

22 lines
251 B
Rust
Raw Normal View History

2017-09-18 10:47:33 +00:00
2017-08-01 15:54:21 +00:00
#![deny(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() {}