2018-10-16 15:10:04 +00:00
|
|
|
error[E0382]: use of moved value: `range`
|
2019-04-07 15:07:36 +00:00
|
|
|
--> $DIR/issue-51512.rs:4:13
|
2018-06-21 02:51:18 +00:00
|
|
|
|
|
2019-01-03 00:43:08 +00:00
|
|
|
LL | let range = 0..1;
|
|
|
|
| ----- move occurs because `range` has type `std::ops::Range<i32>`, which does not implement the `Copy` trait
|
2018-06-21 02:51:18 +00:00
|
|
|
LL | let r = range;
|
|
|
|
| ----- value moved here
|
|
|
|
LL | let x = range.start;
|
|
|
|
| ^^^^^^^^^^^ value used here after move
|
2022-11-03 04:22:24 +00:00
|
|
|
|
|
|
|
|
help: consider cloning the value if the performance cost is acceptable
|
|
|
|
|
|
|
|
|
LL | let r = range.clone();
|
|
|
|
| ++++++++
|
2018-06-21 02:51:18 +00:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0382`.
|