rust/src/test/ui/borrowck/move-in-static-initializer-issue-38520.ast.stderr

16 lines
580 B
Plaintext
Raw Normal View History

2018-08-08 07:28:26 -05:00
error[E0507]: cannot move out of borrowed content
2018-10-05 03:17:16 -05:00
--> $DIR/move-in-static-initializer-issue-38520.rs:25: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-10-05 03:17:16 -05:00
--> $DIR/move-in-static-initializer-issue-38520.rs:27: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`.