]> git.lizzy.rs Git - rust.git/blob - tests/ui/object-lifetime/object-lifetime-default-from-rptr-box-error.stderr
Move /src/test to /tests
[rust.git] / tests / ui / object-lifetime / object-lifetime-default-from-rptr-box-error.stderr
1 error: lifetime may not live long enough
2   --> $DIR/object-lifetime-default-from-rptr-box-error.rs:15:5
3    |
4 LL | fn c<'a>(t: &'a Box<dyn Test+'a>, mut ss: SomeStruct<'a>) {
5    |      -- lifetime `'a` defined here
6 LL |     ss.t = t;
7    |     ^^^^^^^^ assignment requires that `'a` must outlive `'static`
8
9 error: aborting due to previous error
10