2018-10-16 17:10:04 +02:00
|
|
|
error[E0382]: use of moved value: `range`
|
2019-04-07 16:07:36 +01:00
|
|
|
--> $DIR/issue-51512.rs:4:13
|
2018-06-20 23:51:18 -03:00
|
|
|
|
|
2019-01-02 16:43:08 -08: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-20 23:51:18 -03:00
|
|
|
LL | let r = range;
|
|
|
|
| ----- value moved here
|
|
|
|
LL | let x = range.start;
|
|
|
|
| ^^^^^^^^^^^ value used here after move
|
2022-11-02 21:22:24 -07:00
|
|
|
|
|
|
|
|
help: consider cloning the value if the performance cost is acceptable
|
|
|
|
|
|
|
|
|
LL | let r = range.clone();
|
|
|
|
| ++++++++
|
2018-06-20 23:51:18 -03:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0382`.
|