]> git.lizzy.rs Git - rust.git/blob - src/test/ui/moves/moves-based-on-type-block-bad.stderr
Auto merge of #58897 - Mark-Simulacrum:tool-rework, r=alexcrichton
[rust.git] / src / test / ui / moves / moves-based-on-type-block-bad.stderr
1 error[E0507]: cannot move out of borrowed content
2   --> $DIR/moves-based-on-type-block-bad.rs:24:19
3    |
4 LL |             match hellothere.x {
5    |                   ^^^^^^^^^^ cannot move out of borrowed content
6 ...
7 LL |                 box E::Bar(x) => println!("{}", x.to_string()),
8    |                            - hint: to prevent move, use `ref x` or `ref mut x`
9
10 error: aborting due to previous error
11
12 For more information about this error, try `rustc --explain E0507`.