rust/tests/run-pass/needless_lifetimes_impl_trait.rs

24 lines
326 B
Rust
Raw Normal View History

#![feature(plugin)]
#![plugin(clippy)]
#![feature(conservative_impl_trait)]
2017-08-01 10:54:21 -05: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() {}