2018-07-15 16:11:54 -05:00
|
|
|
error[E0507]: cannot move out of static item
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/issue-17718-static-move.rs:6:14
|
2018-07-15 16:11:54 -05:00
|
|
|
|
|
|
|
|
LL | let _a = FOO; //~ ERROR: cannot move out of static item
|
|
|
|
| ^^^
|
|
|
|
| |
|
|
|
|
| cannot move out of static item
|
|
|
|
| help: consider using a reference instead: `&FOO`
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0507`.
|