]> git.lizzy.rs Git - rust.git/blob - src/test/ui/object-lifetime/object-lifetime-default-from-box-error.nll.stderr
Auto merge of #53933 - GuillaumeGomez:codeblock-error-display, r=QuietMisdreavus
[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:28:5
3    |
4 LL | fn load(ss: &mut SomeStruct) -> Box<SomeTrait> {
5    |             --------------- help: add explicit lifetime `'static` to the type of `ss`: `&mut SomeStruct<'static>`
6 ...
7 LL |     ss.r //~ ERROR explicit lifetime required in the type of `ss` [E0621]
8    |     ^^^^ lifetime `'static` required
9
10 error[E0507]: cannot move out of borrowed content
11   --> $DIR/object-lifetime-default-from-box-error.rs:28:5
12    |
13 LL |     ss.r //~ ERROR explicit lifetime required in the type of `ss` [E0621]
14    |     ^^^^ cannot move out of borrowed content
15
16 error[E0621]: explicit lifetime required in the type of `ss`
17   --> $DIR/object-lifetime-default-from-box-error.rs:41:5
18    |
19 LL | fn store1<'b>(ss: &mut SomeStruct, b: Box<SomeTrait+'b>) {
20    |                   --------------- help: add explicit lifetime `'b` to the type of `ss`: `&mut SomeStruct<'b>`
21 ...
22 LL |     ss.r = b; //~ ERROR 41:12: 41:13: explicit lifetime required in the type of `ss` [E0621]
23    |     ^^^^ lifetime `'b` required
24
25 error: aborting due to 3 previous errors
26
27 Some errors occurred: E0507, E0621.
28 For more information about an error, try `rustc --explain E0507`.