rust-clippy/tests/run-pass/needless_lifetimes_impl_trait.rs
2018-03-26 07:05:46 +02:00

23 lines
315 B
Rust

#![allow(stable_features)]
#![feature(conservative_impl_trait)]
#![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() {}