2019-04-05 00:22:36 -05:00
|
|
|
// run-pass
|
|
|
|
|
2018-07-30 04:33:44 -05:00
|
|
|
#![deny(clippy::needless_lifetimes)]
|
2017-08-01 10:54:21 -05:00
|
|
|
#![allow(dead_code)]
|
2016-12-22 08:51:59 -06: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() {}
|