mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
16 lines
638 B
Plaintext
16 lines
638 B
Plaintext
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`.
|