2019-07-26 21:54:25 +00:00
|
|
|
// run-pass
|
2015-02-12 00:45:19 +00:00
|
|
|
// Test that the lifetime from the enclosing `&` is "inherited"
|
|
|
|
// through the `Box` struct.
|
|
|
|
|
2015-03-22 20:13:15 +00:00
|
|
|
// pretty-expanded FIXME #23616
|
|
|
|
|
2015-02-12 00:45:19 +00:00
|
|
|
#![allow(dead_code)]
|
|
|
|
|
|
|
|
trait Test {
|
|
|
|
fn foo(&self) { }
|
|
|
|
}
|
|
|
|
|
|
|
|
struct SomeStruct<'a> {
|
2019-05-28 18:47:21 +00:00
|
|
|
t: &'a Box<dyn Test>,
|
|
|
|
u: &'a Box<dyn Test+'a>,
|
2015-02-12 00:45:19 +00:00
|
|
|
}
|
|
|
|
|
2019-05-28 18:47:21 +00:00
|
|
|
fn a<'a>(t: &'a Box<dyn Test>, mut ss: SomeStruct<'a>) {
|
2015-02-12 00:45:19 +00:00
|
|
|
ss.t = t;
|
|
|
|
}
|
|
|
|
|
2019-05-28 18:47:21 +00:00
|
|
|
fn b<'a>(t: &'a Box<dyn Test>, mut ss: SomeStruct<'a>) {
|
2015-02-12 00:45:19 +00:00
|
|
|
ss.u = t;
|
|
|
|
}
|
|
|
|
|
2015-07-14 23:36:15 +00:00
|
|
|
// see also compile-fail/object-lifetime-default-from-rptr-box-error.rs
|
2015-02-12 00:45:19 +00:00
|
|
|
|
2019-05-28 18:47:21 +00:00
|
|
|
fn d<'a>(t: &'a Box<dyn Test+'a>, mut ss: SomeStruct<'a>) {
|
2015-02-12 00:45:19 +00:00
|
|
|
ss.u = t;
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
}
|