rust/src/test/ui/issues/issue-17718-static-move.nll.stderr
2018-08-15 15:14:21 -07:00

12 lines
414 B
Text

error[E0507]: cannot move out of static item
--> $DIR/issue-17718-static-move.rs:16:14
|
LL | let _a = FOO; //~ ERROR: cannot move out of static item
| ^^^
| |
| cannot move out of static item
| help: consider borrowing here: `&FOO`
error: aborting due to previous error
For more information about this error, try `rustc --explain E0507`.