2018-08-08 07:28:26 -05:00
|
|
|
error[E0382]: use of moved value: `x`
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/binop-move-semantics.rs:8:5
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2020-06-11 12:48:46 -05:00
|
|
|
LL | fn double_move<T: Add<Output=()>>(x: T) {
|
|
|
|
| - move occurs because `x` has type `T`, which does not implement the `Copy` trait
|
|
|
|
LL | / x
|
|
|
|
LL | | +
|
|
|
|
LL | | x;
|
|
|
|
| | ^
|
|
|
|
| | |
|
|
|
|
| |_____value used here after move
|
|
|
|
| `x` moved due to usage in operator
|
|
|
|
|
|
Mention when type parameter could be `Clone`
```
error[E0382]: use of moved value: `t`
--> $DIR/use_of_moved_value_copy_suggestions.rs:7:9
|
LL | fn duplicate_t<T>(t: T) -> (T, T) {
| - move occurs because `t` has type `T`, which does not implement the `Copy` trait
...
LL | (t, t)
| - ^ value used here after move
| |
| value moved here
|
help: if `T` implemented `Clone`, you could clone the value
--> $DIR/use_of_moved_value_copy_suggestions.rs:4:16
|
LL | fn duplicate_t<T>(t: T) -> (T, T) {
| ^ consider constraining this type parameter with `Clone`
...
LL | (t, t)
| - you could clone this value
help: consider restricting type parameter `T`
|
LL | fn duplicate_t<T: Copy>(t: T) -> (T, T) {
| ++++++
```
The `help` is new. On ADTs, we also extend the output with span labels:
```
error[E0507]: cannot move out of static item `FOO`
--> $DIR/issue-17718-static-move.rs:6:14
|
LL | let _a = FOO;
| ^^^ move occurs because `FOO` has type `Foo`, which does not implement the `Copy` trait
|
note: if `Foo` implemented `Clone`, you could clone the value
--> $DIR/issue-17718-static-move.rs:1:1
|
LL | struct Foo;
| ^^^^^^^^^^ consider implementing `Clone` for this type
...
LL | let _a = FOO;
| --- you could clone this value
help: consider borrowing here
|
LL | let _a = &FOO;
| +
```
2024-04-18 17:18:19 -05:00
|
|
|
help: if `T` implemented `Clone`, you could clone the value
|
|
|
|
--> $DIR/binop-move-semantics.rs:5:16
|
|
|
|
|
|
|
|
|
LL | fn double_move<T: Add<Output=()>>(x: T) {
|
|
|
|
| ^ consider constraining this type parameter with `Clone`
|
|
|
|
LL | x
|
|
|
|
| - you could clone this value
|
2020-06-11 12:48:46 -05:00
|
|
|
note: calling this operator moves the left-hand side
|
2022-12-12 09:36:08 -06:00
|
|
|
--> $SRC_DIR/core/src/ops/arith.rs:LL:COL
|
2020-03-13 21:28:14 -05:00
|
|
|
help: consider further restricting this bound
|
2019-12-26 06:43:33 -06:00
|
|
|
|
|
2020-03-13 21:28:14 -05:00
|
|
|
LL | fn double_move<T: Add<Output=()> + Copy>(x: T) {
|
2021-06-21 21:07:19 -05:00
|
|
|
| ++++++
|
2018-08-08 07:28:26 -05:00
|
|
|
|
2019-04-22 02:40:08 -05:00
|
|
|
error[E0382]: borrow of moved value: `x`
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/binop-move-semantics.rs:14:5
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2019-04-22 02:40:08 -05:00
|
|
|
LL | fn move_then_borrow<T: Add<Output=()> + Clone>(x: T) {
|
2019-12-26 06:43:33 -06:00
|
|
|
| - move occurs because `x` has type `T`, which does not implement the `Copy` trait
|
2018-08-08 07:28:26 -05:00
|
|
|
LL | x
|
|
|
|
| - value moved here
|
|
|
|
LL | +
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | x.clone();
|
2023-06-22 15:30:23 -05:00
|
|
|
| ^ value borrowed here after move
|
2019-12-26 06:43:33 -06:00
|
|
|
|
|
2022-11-02 23:22:24 -05:00
|
|
|
help: consider cloning the value if the performance cost is acceptable
|
|
|
|
|
|
|
|
|
LL | x.clone()
|
|
|
|
| ++++++++
|
2020-03-13 21:28:14 -05:00
|
|
|
help: consider further restricting this bound
|
2019-12-26 06:43:33 -06:00
|
|
|
|
|
2020-03-13 21:28:14 -05:00
|
|
|
LL | fn move_then_borrow<T: Add<Output=()> + Clone + Copy>(x: T) {
|
2021-06-21 21:07:19 -05:00
|
|
|
| ++++++
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error[E0505]: cannot move out of `x` because it is borrowed
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/binop-move-semantics.rs:21:5
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2023-01-14 21:06:44 -06:00
|
|
|
LL | fn move_borrowed<T: Add<Output=()>>(x: T, mut y: T) {
|
|
|
|
| - binding `x` declared here
|
2018-08-08 07:28:26 -05:00
|
|
|
LL | let m = &x;
|
2019-04-22 02:40:08 -05:00
|
|
|
| -- borrow of `x` occurs here
|
2018-08-08 07:28:26 -05:00
|
|
|
...
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | x
|
2018-08-08 07:28:26 -05:00
|
|
|
| ^ move out of `x` occurs here
|
2019-04-22 02:40:08 -05:00
|
|
|
...
|
|
|
|
LL | use_mut(n); use_imm(m);
|
|
|
|
| - borrow later used here
|
Mention when type parameter could be `Clone`
```
error[E0382]: use of moved value: `t`
--> $DIR/use_of_moved_value_copy_suggestions.rs:7:9
|
LL | fn duplicate_t<T>(t: T) -> (T, T) {
| - move occurs because `t` has type `T`, which does not implement the `Copy` trait
...
LL | (t, t)
| - ^ value used here after move
| |
| value moved here
|
help: if `T` implemented `Clone`, you could clone the value
--> $DIR/use_of_moved_value_copy_suggestions.rs:4:16
|
LL | fn duplicate_t<T>(t: T) -> (T, T) {
| ^ consider constraining this type parameter with `Clone`
...
LL | (t, t)
| - you could clone this value
help: consider restricting type parameter `T`
|
LL | fn duplicate_t<T: Copy>(t: T) -> (T, T) {
| ++++++
```
The `help` is new. On ADTs, we also extend the output with span labels:
```
error[E0507]: cannot move out of static item `FOO`
--> $DIR/issue-17718-static-move.rs:6:14
|
LL | let _a = FOO;
| ^^^ move occurs because `FOO` has type `Foo`, which does not implement the `Copy` trait
|
note: if `Foo` implemented `Clone`, you could clone the value
--> $DIR/issue-17718-static-move.rs:1:1
|
LL | struct Foo;
| ^^^^^^^^^^ consider implementing `Clone` for this type
...
LL | let _a = FOO;
| --- you could clone this value
help: consider borrowing here
|
LL | let _a = &FOO;
| +
```
2024-04-18 17:18:19 -05:00
|
|
|
|
|
|
|
|
help: if `T` implemented `Clone`, you could clone the value
|
|
|
|
--> $DIR/binop-move-semantics.rs:17:18
|
|
|
|
|
|
|
|
|
LL | fn move_borrowed<T: Add<Output=()>>(x: T, mut y: T) {
|
|
|
|
| ^ consider constraining this type parameter with `Clone`
|
|
|
|
LL | let m = &x;
|
2024-07-26 13:32:19 -05:00
|
|
|
| - you could clone this value
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error[E0505]: cannot move out of `y` because it is borrowed
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/binop-move-semantics.rs:23:5
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2023-01-14 21:06:44 -06:00
|
|
|
LL | fn move_borrowed<T: Add<Output=()>>(x: T, mut y: T) {
|
|
|
|
| ----- binding `y` declared here
|
|
|
|
LL | let m = &x;
|
2018-08-08 07:28:26 -05:00
|
|
|
LL | let n = &mut y;
|
2019-04-22 02:40:08 -05:00
|
|
|
| ------ borrow of `y` occurs here
|
2018-08-08 07:28:26 -05:00
|
|
|
...
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | y;
|
2018-08-08 07:28:26 -05:00
|
|
|
| ^ move out of `y` occurs here
|
2019-04-22 02:40:08 -05:00
|
|
|
LL | use_mut(n); use_imm(m);
|
|
|
|
| - borrow later used here
|
Mention when type parameter could be `Clone`
```
error[E0382]: use of moved value: `t`
--> $DIR/use_of_moved_value_copy_suggestions.rs:7:9
|
LL | fn duplicate_t<T>(t: T) -> (T, T) {
| - move occurs because `t` has type `T`, which does not implement the `Copy` trait
...
LL | (t, t)
| - ^ value used here after move
| |
| value moved here
|
help: if `T` implemented `Clone`, you could clone the value
--> $DIR/use_of_moved_value_copy_suggestions.rs:4:16
|
LL | fn duplicate_t<T>(t: T) -> (T, T) {
| ^ consider constraining this type parameter with `Clone`
...
LL | (t, t)
| - you could clone this value
help: consider restricting type parameter `T`
|
LL | fn duplicate_t<T: Copy>(t: T) -> (T, T) {
| ++++++
```
The `help` is new. On ADTs, we also extend the output with span labels:
```
error[E0507]: cannot move out of static item `FOO`
--> $DIR/issue-17718-static-move.rs:6:14
|
LL | let _a = FOO;
| ^^^ move occurs because `FOO` has type `Foo`, which does not implement the `Copy` trait
|
note: if `Foo` implemented `Clone`, you could clone the value
--> $DIR/issue-17718-static-move.rs:1:1
|
LL | struct Foo;
| ^^^^^^^^^^ consider implementing `Clone` for this type
...
LL | let _a = FOO;
| --- you could clone this value
help: consider borrowing here
|
LL | let _a = &FOO;
| +
```
2024-04-18 17:18:19 -05:00
|
|
|
|
|
|
|
|
help: if `T` implemented `Clone`, you could clone the value
|
|
|
|
--> $DIR/binop-move-semantics.rs:17:18
|
|
|
|
|
|
|
|
|
LL | fn move_borrowed<T: Add<Output=()>>(x: T, mut y: T) {
|
|
|
|
| ^ consider constraining this type parameter with `Clone`
|
|
|
|
LL | let m = &x;
|
|
|
|
LL | let n = &mut y;
|
2024-07-26 13:32:19 -05:00
|
|
|
| - you could clone this value
|
2018-08-08 07:28:26 -05:00
|
|
|
|
2019-05-05 06:02:32 -05:00
|
|
|
error[E0507]: cannot move out of `*m` which is behind a mutable reference
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/binop-move-semantics.rs:30:5
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2022-06-27 17:43:23 -05:00
|
|
|
LL | *m
|
|
|
|
| -^
|
|
|
|
| |
|
|
|
|
| _____move occurs because `*m` has type `T`, which does not implement the `Copy` trait
|
|
|
|
| |
|
|
|
|
LL | | +
|
|
|
|
LL | | *n;
|
|
|
|
| |______- `*m` moved due to usage in operator
|
|
|
|
|
|
|
|
|
note: calling this operator moves the left-hand side
|
2022-12-12 09:36:08 -06:00
|
|
|
--> $SRC_DIR/core/src/ops/arith.rs:LL:COL
|
Mention when type parameter could be `Clone`
```
error[E0382]: use of moved value: `t`
--> $DIR/use_of_moved_value_copy_suggestions.rs:7:9
|
LL | fn duplicate_t<T>(t: T) -> (T, T) {
| - move occurs because `t` has type `T`, which does not implement the `Copy` trait
...
LL | (t, t)
| - ^ value used here after move
| |
| value moved here
|
help: if `T` implemented `Clone`, you could clone the value
--> $DIR/use_of_moved_value_copy_suggestions.rs:4:16
|
LL | fn duplicate_t<T>(t: T) -> (T, T) {
| ^ consider constraining this type parameter with `Clone`
...
LL | (t, t)
| - you could clone this value
help: consider restricting type parameter `T`
|
LL | fn duplicate_t<T: Copy>(t: T) -> (T, T) {
| ++++++
```
The `help` is new. On ADTs, we also extend the output with span labels:
```
error[E0507]: cannot move out of static item `FOO`
--> $DIR/issue-17718-static-move.rs:6:14
|
LL | let _a = FOO;
| ^^^ move occurs because `FOO` has type `Foo`, which does not implement the `Copy` trait
|
note: if `Foo` implemented `Clone`, you could clone the value
--> $DIR/issue-17718-static-move.rs:1:1
|
LL | struct Foo;
| ^^^^^^^^^^ consider implementing `Clone` for this type
...
LL | let _a = FOO;
| --- you could clone this value
help: consider borrowing here
|
LL | let _a = &FOO;
| +
```
2024-04-18 17:18:19 -05:00
|
|
|
help: if `T` implemented `Clone`, you could clone the value
|
|
|
|
--> $DIR/binop-move-semantics.rs:26:24
|
|
|
|
|
|
|
|
|
LL | fn illegal_dereference<T: Add<Output=()>>(mut x: T, y: T) {
|
|
|
|
| ^ consider constraining this type parameter with `Clone`
|
|
|
|
...
|
|
|
|
LL | *m
|
|
|
|
| -- you could clone this value
|
2018-08-08 07:28:26 -05:00
|
|
|
|
2019-05-05 06:02:32 -05:00
|
|
|
error[E0507]: cannot move out of `*n` which is behind a shared reference
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/binop-move-semantics.rs:32:5
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | *n;
|
2019-05-05 06:02:32 -05:00
|
|
|
| ^^ move occurs because `*n` has type `T`, which does not implement the `Copy` trait
|
Mention when type parameter could be `Clone`
```
error[E0382]: use of moved value: `t`
--> $DIR/use_of_moved_value_copy_suggestions.rs:7:9
|
LL | fn duplicate_t<T>(t: T) -> (T, T) {
| - move occurs because `t` has type `T`, which does not implement the `Copy` trait
...
LL | (t, t)
| - ^ value used here after move
| |
| value moved here
|
help: if `T` implemented `Clone`, you could clone the value
--> $DIR/use_of_moved_value_copy_suggestions.rs:4:16
|
LL | fn duplicate_t<T>(t: T) -> (T, T) {
| ^ consider constraining this type parameter with `Clone`
...
LL | (t, t)
| - you could clone this value
help: consider restricting type parameter `T`
|
LL | fn duplicate_t<T: Copy>(t: T) -> (T, T) {
| ++++++
```
The `help` is new. On ADTs, we also extend the output with span labels:
```
error[E0507]: cannot move out of static item `FOO`
--> $DIR/issue-17718-static-move.rs:6:14
|
LL | let _a = FOO;
| ^^^ move occurs because `FOO` has type `Foo`, which does not implement the `Copy` trait
|
note: if `Foo` implemented `Clone`, you could clone the value
--> $DIR/issue-17718-static-move.rs:1:1
|
LL | struct Foo;
| ^^^^^^^^^^ consider implementing `Clone` for this type
...
LL | let _a = FOO;
| --- you could clone this value
help: consider borrowing here
|
LL | let _a = &FOO;
| +
```
2024-04-18 17:18:19 -05:00
|
|
|
|
|
|
|
|
help: if `T` implemented `Clone`, you could clone the value
|
|
|
|
--> $DIR/binop-move-semantics.rs:26:24
|
|
|
|
|
|
|
|
|
LL | fn illegal_dereference<T: Add<Output=()>>(mut x: T, y: T) {
|
|
|
|
| ^ consider constraining this type parameter with `Clone`
|
|
|
|
...
|
|
|
|
LL | *n;
|
|
|
|
| -- you could clone this value
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error[E0502]: cannot borrow `f` as immutable because it is also borrowed as mutable
|
2019-04-22 02:40:08 -05:00
|
|
|
--> $DIR/binop-move-semantics.rs:54:5
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2019-04-22 02:40:08 -05:00
|
|
|
LL | &mut f
|
|
|
|
| ------
|
|
|
|
| |
|
|
|
|
| _____mutable borrow occurs here
|
|
|
|
| |
|
|
|
|
LL | | +
|
|
|
|
LL | | &f;
|
|
|
|
| | ^-
|
|
|
|
| |_____||
|
|
|
|
| |mutable borrow later used here
|
|
|
|
| immutable borrow occurs here
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error[E0502]: cannot borrow `f` as mutable because it is also borrowed as immutable
|
2019-04-22 02:40:08 -05:00
|
|
|
--> $DIR/binop-move-semantics.rs:62:5
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2019-04-22 02:40:08 -05:00
|
|
|
LL | &f
|
|
|
|
| --
|
|
|
|
| |
|
|
|
|
| _____immutable borrow occurs here
|
|
|
|
| |
|
|
|
|
LL | | +
|
|
|
|
LL | | &mut f;
|
|
|
|
| | ^^^^^-
|
|
|
|
| |_____|____|
|
|
|
|
| | immutable borrow later used here
|
|
|
|
| mutable borrow occurs here
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error: aborting due to 8 previous errors
|
|
|
|
|
2019-04-17 12:26:38 -05:00
|
|
|
Some errors have detailed explanations: E0382, E0502, E0505, E0507.
|
2018-08-08 07:28:26 -05:00
|
|
|
For more information about an error, try `rustc --explain E0382`.
|