2022-02-25 23:38:00 +03:00
|
|
|
error[E0382]: use of moved value: `t`
|
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
|
|
|
--> $DIR/use_of_moved_value_copy_suggestions.rs:7:9
|
2022-02-25 23:38:00 +03:00
|
|
|
|
|
|
|
|
LL | fn duplicate_t<T>(t: T) -> (T, T) {
|
|
|
|
| - move occurs because `t` 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 22:18:19 +00:00
|
|
|
...
|
2022-02-25 23:38:00 +03:00
|
|
|
LL | (t, t)
|
|
|
|
| - ^ value used here after move
|
|
|
|
| |
|
|
|
|
| value moved 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/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
|
2022-02-25 23:38:00 +03:00
|
|
|
help: consider restricting type parameter `T`
|
|
|
|
|
|
|
|
|
LL | fn duplicate_t<T: Copy>(t: T) -> (T, T) {
|
|
|
|
| ++++++
|
|
|
|
|
|
|
|
error[E0382]: use of moved value: `t`
|
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
|
|
|
--> $DIR/use_of_moved_value_copy_suggestions.rs:12:9
|
2022-02-25 23:38:00 +03:00
|
|
|
|
|
|
|
|
LL | fn duplicate_opt<T>(t: Option<T>) -> (Option<T>, Option<T>) {
|
|
|
|
| - move occurs because `t` has type `Option<T>`, which does not implement the `Copy` trait
|
2022-03-01 14:11:42 +03:00
|
|
|
LL |
|
2022-02-25 23:38:00 +03:00
|
|
|
LL | (t, t)
|
|
|
|
| - ^ value used here after move
|
|
|
|
| |
|
|
|
|
| value moved here
|
|
|
|
|
|
|
|
|
help: consider restricting type parameter `T`
|
|
|
|
|
|
|
|
|
LL | fn duplicate_opt<T: Copy>(t: Option<T>) -> (Option<T>, Option<T>) {
|
|
|
|
| ++++++
|
|
|
|
|
|
|
|
error[E0382]: use of moved value: `t`
|
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
|
|
|
--> $DIR/use_of_moved_value_copy_suggestions.rs:17:9
|
2022-02-25 23:38:00 +03:00
|
|
|
|
|
|
|
|
LL | fn duplicate_tup1<T>(t: (T,)) -> ((T,), (T,)) {
|
|
|
|
| - move occurs because `t` has type `(T,)`, which does not implement the `Copy` trait
|
2022-03-01 14:11:42 +03:00
|
|
|
LL |
|
2022-02-25 23:38:00 +03:00
|
|
|
LL | (t, t)
|
|
|
|
| - ^ value used here after move
|
|
|
|
| |
|
|
|
|
| value moved here
|
|
|
|
|
|
|
|
|
help: consider restricting type parameter `T`
|
|
|
|
|
|
|
|
|
LL | fn duplicate_tup1<T: Copy>(t: (T,)) -> ((T,), (T,)) {
|
|
|
|
| ++++++
|
|
|
|
|
|
|
|
error[E0382]: use of moved value: `t`
|
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
|
|
|
--> $DIR/use_of_moved_value_copy_suggestions.rs:22:9
|
2022-02-25 23:38:00 +03:00
|
|
|
|
|
|
|
|
LL | fn duplicate_tup2<A, B>(t: (A, B)) -> ((A, B), (A, B)) {
|
|
|
|
| - move occurs because `t` has type `(A, B)`, which does not implement the `Copy` trait
|
2022-03-01 14:11:42 +03:00
|
|
|
LL |
|
2022-02-25 23:38:00 +03:00
|
|
|
LL | (t, t)
|
|
|
|
| - ^ value used here after move
|
|
|
|
| |
|
|
|
|
| value moved here
|
|
|
|
|
|
|
|
|
help: consider restricting type parameters
|
|
|
|
|
|
|
|
|
LL | fn duplicate_tup2<A: Copy, B: Copy>(t: (A, B)) -> ((A, B), (A, B)) {
|
|
|
|
| ++++++ ++++++
|
|
|
|
|
|
|
|
error[E0382]: use of moved value: `t`
|
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
|
|
|
--> $DIR/use_of_moved_value_copy_suggestions.rs:27:9
|
2022-02-25 23:38:00 +03:00
|
|
|
|
|
|
|
|
LL | fn duplicate_custom<T>(t: S<T>) -> (S<T>, S<T>) {
|
|
|
|
| - move occurs because `t` has type `S<T>`, which does not implement the `Copy` trait
|
2022-03-01 14:11:42 +03:00
|
|
|
LL |
|
2022-02-25 23:38:00 +03:00
|
|
|
LL | (t, t)
|
|
|
|
| - ^ value used here after move
|
|
|
|
| |
|
|
|
|
| value moved here
|
|
|
|
|
|
|
|
|
help: consider restricting type parameter `T`
|
|
|
|
|
|
2022-06-02 12:34:55 -07:00
|
|
|
LL | fn duplicate_custom<T: Copy + Trait>(t: S<T>) -> (S<T>, S<T>) {
|
2022-02-25 23:38:00 +03:00
|
|
|
| ++++++++++++++
|
|
|
|
|
|
|
|
error[E0382]: use of moved value: `t`
|
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
|
|
|
--> $DIR/use_of_moved_value_copy_suggestions.rs:45:9
|
2022-02-25 23:38:00 +03:00
|
|
|
|
|
|
|
|
LL | fn duplicate_custom_1<T>(t: S<T>) -> (S<T>, S<T>) where {
|
|
|
|
| - move occurs because `t` has type `S<T>`, which does not implement the `Copy` trait
|
2022-03-01 14:11:42 +03:00
|
|
|
LL |
|
2022-02-25 23:38:00 +03:00
|
|
|
LL | (t, t)
|
|
|
|
| - ^ value used here after move
|
|
|
|
| |
|
|
|
|
| value moved here
|
|
|
|
|
|
|
|
|
help: consider restricting type parameter `T`
|
|
|
|
|
|
2022-06-02 12:34:55 -07:00
|
|
|
LL | fn duplicate_custom_1<T: Copy + Trait>(t: S<T>) -> (S<T>, S<T>) where {
|
2022-02-25 23:38:00 +03:00
|
|
|
| ++++++++++++++
|
|
|
|
|
|
|
|
error[E0382]: use of moved value: `t`
|
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
|
|
|
--> $DIR/use_of_moved_value_copy_suggestions.rs:53:9
|
2022-02-25 23:38:00 +03:00
|
|
|
|
|
|
|
|
LL | fn duplicate_custom_2<T>(t: S<T>) -> (S<T>, S<T>)
|
|
|
|
| - move occurs because `t` has type `S<T>`, which does not implement the `Copy` trait
|
|
|
|
...
|
|
|
|
LL | (t, t)
|
|
|
|
| - ^ value used here after move
|
|
|
|
| |
|
|
|
|
| value moved here
|
|
|
|
|
|
|
|
|
help: consider further restricting this bound
|
|
|
|
|
|
2022-06-02 12:34:55 -07:00
|
|
|
LL | T: A + Copy + Trait,
|
2022-02-25 23:38:00 +03:00
|
|
|
| ++++++++++++++
|
|
|
|
|
|
|
|
error[E0382]: use of moved value: `t`
|
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
|
|
|
--> $DIR/use_of_moved_value_copy_suggestions.rs:62:9
|
2022-02-25 23:38:00 +03:00
|
|
|
|
|
|
|
|
LL | fn duplicate_custom_3<T>(t: S<T>) -> (S<T>, S<T>)
|
|
|
|
| - move occurs because `t` has type `S<T>`, which does not implement the `Copy` trait
|
|
|
|
...
|
|
|
|
LL | (t, t)
|
|
|
|
| - ^ value used here after move
|
|
|
|
| |
|
|
|
|
| value moved here
|
|
|
|
|
|
2022-03-14 15:56:37 +01:00
|
|
|
help: consider further restricting this bound
|
2022-02-25 23:38:00 +03:00
|
|
|
|
|
2022-06-02 12:34:55 -07:00
|
|
|
LL | T: A + Copy + Trait,
|
2022-03-14 15:56:37 +01:00
|
|
|
| ++++++++++++++
|
2022-02-25 23:38:00 +03:00
|
|
|
|
|
|
|
error[E0382]: use of moved value: `t`
|
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
|
|
|
--> $DIR/use_of_moved_value_copy_suggestions.rs:70:9
|
2022-02-25 23:38:00 +03:00
|
|
|
|
|
|
|
|
LL | fn duplicate_custom_4<T: A>(t: S<T>) -> (S<T>, S<T>)
|
|
|
|
| - move occurs because `t` has type `S<T>`, which does not implement the `Copy` trait
|
|
|
|
...
|
|
|
|
LL | (t, t)
|
|
|
|
| - ^ value used here after move
|
|
|
|
| |
|
|
|
|
| value moved here
|
|
|
|
|
|
|
|
|
help: consider further restricting this bound
|
|
|
|
|
|
2022-06-02 12:34:55 -07:00
|
|
|
LL | fn duplicate_custom_4<T: A + Copy + Trait>(t: S<T>) -> (S<T>, S<T>)
|
2022-03-14 15:56:37 +01:00
|
|
|
| ++++++++++++++
|
2022-02-25 23:38:00 +03:00
|
|
|
|
2022-04-12 12:14:43 +04:00
|
|
|
error[E0382]: use of moved value: `t`
|
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
|
|
|
--> $DIR/use_of_moved_value_copy_suggestions.rs:77:9
|
2022-04-12 12:14:43 +04:00
|
|
|
|
|
2022-06-22 19:12:18 -04:00
|
|
|
LL | fn existing_colon<T:>(t: T) {
|
|
|
|
| - move occurs because `t` 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 22:18:19 +00:00
|
|
|
...
|
2022-04-12 12:14:43 +04:00
|
|
|
LL | [t, t];
|
|
|
|
| - ^ value used here after move
|
|
|
|
| |
|
|
|
|
| value moved 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/use_of_moved_value_copy_suggestions.rs:74:19
|
|
|
|
|
|
|
|
|
LL | fn existing_colon<T:>(t: T) {
|
|
|
|
| ^ consider constraining this type parameter with `Clone`
|
|
|
|
...
|
|
|
|
LL | [t, t];
|
|
|
|
| - you could clone this value
|
2022-06-22 19:12:18 -04:00
|
|
|
help: consider restricting type parameter `T`
|
2022-04-12 12:14:43 +04:00
|
|
|
|
|
2022-06-22 19:12:18 -04:00
|
|
|
LL | fn existing_colon<T: Copy>(t: T) {
|
|
|
|
| ++++
|
2022-04-12 12:14:43 +04:00
|
|
|
|
|
|
|
error[E0382]: use of moved value: `t`
|
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
|
|
|
--> $DIR/use_of_moved_value_copy_suggestions.rs:85:9
|
2022-04-12 12:14:43 +04:00
|
|
|
|
|
2022-06-22 19:12:18 -04:00
|
|
|
LL | fn existing_colon_in_where<T>(t: T)
|
|
|
|
| - move occurs because `t` has type `T`, which does not implement the `Copy` trait
|
|
|
|
...
|
2022-04-12 12:14:43 +04:00
|
|
|
LL | [t, t];
|
|
|
|
| - ^ value used here after move
|
|
|
|
| |
|
|
|
|
| value moved 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/use_of_moved_value_copy_suggestions.rs:80:28
|
|
|
|
|
|
|
|
|
LL | fn existing_colon_in_where<T>(t: T)
|
|
|
|
| ^ consider constraining this type parameter with `Clone`
|
|
|
|
...
|
|
|
|
LL | [t, t];
|
|
|
|
| - you could clone this value
|
2022-06-22 19:12:18 -04:00
|
|
|
help: consider further restricting type parameter `T`
|
2022-04-12 12:14:43 +04:00
|
|
|
|
|
2022-06-22 19:12:18 -04:00
|
|
|
LL | T:, T: Copy
|
|
|
|
| ~~~~~~~~~
|
2022-04-12 12:14:43 +04:00
|
|
|
|
|
|
|
error: aborting due to 11 previous errors
|
2022-02-25 23:38:00 +03:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0382`.
|