2017-09-18 12:47:33 +02:00
|
|
|
|
2017-08-01 17:54:21 +02:00
|
|
|
#![deny(needless_lifetimes)]
|
|
|
|
#![allow(dead_code)]
|
2016-12-22 15:51:59 +01:00
|
|
|
|
|
|
|
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() {}
|