rust/tests/run-pass/needless_lifetimes_impl_trait.rs

24 lines
289 B
Rust
Raw Normal View History

2017-09-18 12:47:33 +02:00
#![feature(conservative_impl_trait)]
2017-08-01 17:54:21 +02: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() {}