]> git.lizzy.rs Git - rust.git/blob - src/test/ui/object-lifetime/object-lifetime-default-from-box-error.nll.stderr
Update tests for changes to cannot move errors
[rust.git] / src / test / ui / object-lifetime / object-lifetime-default-from-box-error.nll.stderr
1 error[E0621]: explicit lifetime required in the type of `ss`
2   --> $DIR/object-lifetime-default-from-box-error.rs:18:5
3    |
4 LL | fn load(ss: &mut SomeStruct) -> Box<dyn SomeTrait> {
5    |             --------------- help: add explicit lifetime `'static` to the type of `ss`: `&mut SomeStruct<'static>`
6 ...
7 LL |     ss.r
8    |     ^^^^ lifetime `'static` required
9
10 error[E0507]: cannot move out of `ss.r` which is behind a mutable reference
11   --> $DIR/object-lifetime-default-from-box-error.rs:18:5
12    |
13 LL |     ss.r
14    |     ^^^^ move occurs because `ss.r` has type `std::boxed::Box<dyn SomeTrait>`, which does not implement the `Copy` trait
15
16 error[E0621]: explicit lifetime required in the type of `ss`
17   --> $DIR/object-lifetime-default-from-box-error.rs:31:5
18    |
19 LL | fn store1<'b>(ss: &mut SomeStruct, b: Box<dyn SomeTrait+'b>) {
20    |                   --------------- help: add explicit lifetime `'b` to the type of `ss`: `&mut SomeStruct<'b>`
21 ...
22 LL |     ss.r = b;
23    |     ^^^^ lifetime `'b` required
24
25 error: aborting due to 3 previous errors
26
27 Some errors have detailed explanations: E0507, E0621.
28 For more information about an error, try `rustc --explain E0507`.