summary refs log tree commit diff
path: root/src/test/ui/object-lifetime/object-lifetime-default-from-rptr-struct-error.nll.stderr
blob: 8c28a7a011abaa13e67730d53b16648c0bfe1b31 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
error: lifetime may not live long enough
  --> $DIR/object-lifetime-default-from-rptr-struct-error.rs:21:5
   |
LL | fn c<'a>(t: &'a MyBox<dyn Test+'a>, mut ss: SomeStruct<'a>) {
   |      -- lifetime `'a` defined here
LL |     ss.t = t;
   |     ^^^^^^^^ assignment requires that `'a` must outlive `'static`
   |
   = help: consider replacing `'a` with `'static`

error: aborting due to previous error