rust/src/test/ui/object-lifetime/object-lifetime-default-from-rptr-struct-error.nll.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
349 B
Plaintext
Raw Normal View History

error: lifetime may not live long enough
--> $DIR/object-lifetime-default-from-rptr-struct-error.rs:24:5
|
2019-05-28 18:46:13 +00:00
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`
error: aborting due to previous error