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