]> git.lizzy.rs Git - rust.git/blob - tests/ui/borrowck/move-in-static-initializer-issue-38520.stderr
Rollup merge of #106726 - cmorin6:fix-comment-typos, r=Nilstrieb
[rust.git] / tests / ui / borrowck / move-in-static-initializer-issue-38520.stderr
1 error[E0507]: cannot move out of a shared reference
2   --> $DIR/move-in-static-initializer-issue-38520.rs:12:23
3    |
4 LL | static Y: usize = get(*&X);
5    |                       ^^^ move occurs because value has type `Foo`, which does not implement the `Copy` trait
6
7 error[E0507]: cannot move out of a shared reference
8   --> $DIR/move-in-static-initializer-issue-38520.rs:13:22
9    |
10 LL | const Z: usize = get(*&X);
11    |                      ^^^ move occurs because value has type `Foo`, which does not implement the `Copy` trait
12
13 error: aborting due to 2 previous errors
14
15 For more information about this error, try `rustc --explain E0507`.