2019-04-22 07:40:08 +00:00
|
|
|
error[E0382]: borrow of moved value: `x`
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/unop-move-semantics.rs:8:5
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2019-04-22 07:40:08 +00:00
|
|
|
LL | fn move_then_borrow<T: Not<Output=T> + Clone>(x: T) {
|
2019-12-26 12:43:33 +00:00
|
|
|
| - move occurs because `x` has type `T`, which does not implement the `Copy` trait
|
2018-08-08 12:28:26 +00:00
|
|
|
LL | !x;
|
2020-06-11 17:48:46 +00:00
|
|
|
| -- `x` moved due to usage in operator
|
2022-06-08 18:07:59 +00:00
|
|
|
LL |
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | x.clone();
|
2023-06-22 20:30:23 +00:00
|
|
|
| ^ value borrowed here after move
|
2019-12-26 12:43:33 +00:00
|
|
|
|
|
2024-03-12 17:21:15 +00:00
|
|
|
note: calling this operator moves the value
|
2022-12-12 15:36:08 +00:00
|
|
|
--> $SRC_DIR/core/src/ops/bit.rs:LL:COL
|
2022-11-03 04:22:24 +00:00
|
|
|
help: consider cloning the value if the performance cost is acceptable
|
|
|
|
|
|
|
|
|
LL | !x.clone();
|
|
|
|
| ++++++++
|
2024-11-28 21:57:48 +00:00
|
|
|
help: consider further restricting type parameter `T` with trait `Copy`
|
2019-12-26 12:43:33 +00:00
|
|
|
|
|
2020-03-14 02:28:14 +00:00
|
|
|
LL | fn move_then_borrow<T: Not<Output=T> + Clone + Copy>(x: T) {
|
2021-06-22 02:07:19 +00:00
|
|
|
| ++++++
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
error[E0505]: cannot move out of `x` because it is borrowed
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/unop-move-semantics.rs:15:6
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2023-01-15 03:06:44 +00:00
|
|
|
LL | fn move_borrowed<T: Not<Output=T>>(x: T, mut y: T) {
|
|
|
|
| - binding `x` declared here
|
2018-08-08 12:28:26 +00:00
|
|
|
LL | let m = &x;
|
2019-04-22 07:40:08 +00:00
|
|
|
| -- borrow of `x` occurs here
|
2018-08-08 12:28:26 +00:00
|
|
|
...
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | !x;
|
2018-08-08 12:28:26 +00:00
|
|
|
| ^ move out of `x` occurs here
|
2019-04-22 07:40:08 +00: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 22:18:19 +00:00
|
|
|
|
|
|
|
|
help: if `T` implemented `Clone`, you could clone the value
|
|
|
|
--> $DIR/unop-move-semantics.rs:11:18
|
|
|
|
|
|
|
|
|
LL | fn move_borrowed<T: Not<Output=T>>(x: T, mut y: T) {
|
|
|
|
| ^ consider constraining this type parameter with `Clone`
|
|
|
|
LL | let m = &x;
|
2024-07-26 18:32:19 +00:00
|
|
|
| - you could clone this value
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
error[E0505]: cannot move out of `y` because it is borrowed
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/unop-move-semantics.rs:17:6
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2023-01-15 03:06:44 +00:00
|
|
|
LL | fn move_borrowed<T: Not<Output=T>>(x: T, mut y: T) {
|
|
|
|
| ----- binding `y` declared here
|
|
|
|
LL | let m = &x;
|
2018-08-08 12:28:26 +00:00
|
|
|
LL | let n = &mut y;
|
2019-04-22 07:40:08 +00:00
|
|
|
| ------ borrow of `y` occurs here
|
2018-08-08 12:28:26 +00:00
|
|
|
...
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | !y;
|
2018-08-08 12:28:26 +00:00
|
|
|
| ^ move out of `y` occurs here
|
2019-04-22 07:40:08 +00: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 22:18:19 +00:00
|
|
|
|
|
|
|
|
help: if `T` implemented `Clone`, you could clone the value
|
|
|
|
--> $DIR/unop-move-semantics.rs:11:18
|
|
|
|
|
|
|
|
|
LL | fn move_borrowed<T: Not<Output=T>>(x: T, mut y: T) {
|
|
|
|
| ^ consider constraining this type parameter with `Clone`
|
|
|
|
LL | let m = &x;
|
|
|
|
LL | let n = &mut y;
|
2024-07-26 18:32:19 +00:00
|
|
|
| - you could clone this value
|
2018-08-08 12:28:26 +00:00
|
|
|
|
2019-05-05 11:02:32 +00:00
|
|
|
error[E0507]: cannot move out of `*m` which is behind a mutable reference
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/unop-move-semantics.rs:24:6
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | !*m;
|
2022-06-27 22:43:23 +00:00
|
|
|
| -^^
|
|
|
|
| ||
|
|
|
|
| |move occurs because `*m` has type `T`, which does not implement the `Copy` trait
|
|
|
|
| `*m` moved due to usage in operator
|
|
|
|
|
|
2024-03-12 17:21:15 +00:00
|
|
|
note: calling this operator moves the value
|
2022-12-12 15:36:08 +00:00
|
|
|
--> $SRC_DIR/core/src/ops/bit.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 22:18:19 +00:00
|
|
|
help: if `T` implemented `Clone`, you could clone the value
|
|
|
|
--> $DIR/unop-move-semantics.rs:20:24
|
|
|
|
|
|
|
|
|
LL | fn illegal_dereference<T: Not<Output=T>>(mut x: T, y: T) {
|
|
|
|
| ^ consider constraining this type parameter with `Clone`
|
|
|
|
...
|
|
|
|
LL | !*m;
|
|
|
|
| -- you could clone this value
|
2018-08-08 12:28:26 +00:00
|
|
|
|
2019-05-05 11:02:32 +00:00
|
|
|
error[E0507]: cannot move out of `*n` which is behind a shared reference
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/unop-move-semantics.rs:26:6
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | !*n;
|
2022-06-27 22:43:23 +00:00
|
|
|
| -^^
|
|
|
|
| ||
|
|
|
|
| |move occurs because `*n` has type `T`, which does not implement the `Copy` trait
|
|
|
|
| `*n` 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 22:18:19 +00:00
|
|
|
|
|
|
|
|
help: if `T` implemented `Clone`, you could clone the value
|
|
|
|
--> $DIR/unop-move-semantics.rs:20:24
|
|
|
|
|
|
|
|
|
LL | fn illegal_dereference<T: Not<Output=T>>(mut x: T, y: T) {
|
|
|
|
| ^ consider constraining this type parameter with `Clone`
|
|
|
|
...
|
|
|
|
LL | !*n;
|
|
|
|
| -- you could clone this value
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
error: aborting due to 5 previous errors
|
|
|
|
|
2019-04-17 17:26:38 +00:00
|
|
|
Some errors have detailed explanations: E0382, E0505, E0507.
|
2018-08-08 12:28:26 +00:00
|
|
|
For more information about an error, try `rustc --explain E0382`.
|