2018-08-08 12:28:26 +00:00
|
|
|
error[E0507]: cannot move out of borrowed content
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/move-in-static-initializer-issue-38520.rs:15:23
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2019-03-17 09:52:07 +00:00
|
|
|
LL | static Y: usize = get(*&X);
|
2018-08-08 12:28:26 +00:00
|
|
|
| ^^^ cannot move out of borrowed content
|
|
|
|
|
|
|
|
error[E0507]: cannot move out of borrowed content
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/move-in-static-initializer-issue-38520.rs:17:22
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2019-03-17 09:52:07 +00:00
|
|
|
LL | const Z: usize = get(*&X);
|
2018-08-08 12:28:26 +00:00
|
|
|
| ^^^ cannot move out of borrowed content
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0507`.
|