2019-01-27 05:03:21 -06:00
|
|
|
error: lifetime may not live long enough
|
2022-04-01 12:13:25 -05:00
|
|
|
--> $DIR/object-lifetime-default-from-rptr-struct-error.rs:20:5
|
2019-01-27 05:03:21 -06:00
|
|
|
|
|
2019-05-28 13:46:13 -05:00
|
|
|
LL | fn c<'a>(t: &'a MyBox<dyn Test+'a>, mut ss: SomeStruct<'a>) {
|
2019-01-27 05:03:21 -06:00
|
|
|
| -- lifetime `'a` defined here
|
|
|
|
LL | ss.t = t;
|
|
|
|
| ^^^^^^^^ assignment requires that `'a` must outlive `'static`
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|