summaryrefslogtreecommitdiffstats
path: root/tests/ui/borrowck/move-in-static-initializer-issue-38520.stderr
blob: 6619fb42c281a57926329cdd371602aeec659808 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
error[E0507]: cannot move out of a shared reference
  --> $DIR/move-in-static-initializer-issue-38520.rs:12:23
   |
LL | static Y: usize = get(*&X);
   |                       ^^^ move occurs because value has type `Foo`, which does not implement the `Copy` trait

error[E0507]: cannot move out of a shared reference
  --> $DIR/move-in-static-initializer-issue-38520.rs:13:22
   |
LL | const Z: usize = get(*&X);
   |                      ^^^ move occurs because value has type `Foo`, which does not implement the `Copy` trait

error: aborting due to 2 previous errors

For more information about this error, try `rustc --explain E0507`.