2022-03-01 14:11:42 +03:00
|
|
|
//@ run-rustfix
|
|
|
|
#![allow(dead_code)]
|
|
|
|
|
|
|
|
fn duplicate_t<T: Copy>(t: T) -> (T, T) {
|
|
|
|
//~^ HELP consider restricting type parameter `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
|
|
|
//~| HELP if `T` implemented `Clone`, you could clone the value
|
2022-03-01 14:11:42 +03:00
|
|
|
(t, t) //~ use of moved value: `t`
|
|
|
|
}
|
|
|
|
|
|
|
|
fn duplicate_opt<T: Copy>(t: Option<T>) -> (Option<T>, Option<T>) {
|
|
|
|
//~^ HELP consider restricting type parameter `T`
|
|
|
|
(t, t) //~ use of moved value: `t`
|
|
|
|
}
|
|
|
|
|
|
|
|
fn duplicate_tup1<T: Copy>(t: (T,)) -> ((T,), (T,)) {
|
|
|
|
//~^ HELP consider restricting type parameter `T`
|
|
|
|
(t, t) //~ use of moved value: `t`
|
|
|
|
}
|
|
|
|
|
|
|
|
fn duplicate_tup2<A: Copy, B: Copy>(t: (A, B)) -> ((A, B), (A, B)) {
|
|
|
|
//~^ HELP consider restricting type parameters
|
|
|
|
(t, t) //~ use of moved value: `t`
|
|
|
|
}
|
|
|
|
|
2022-06-02 12:34:55 -07:00
|
|
|
fn duplicate_custom<T: Copy + Trait>(t: S<T>) -> (S<T>, S<T>) {
|
2022-03-01 14:11:42 +03:00
|
|
|
//~^ HELP consider restricting type parameter `T`
|
|
|
|
(t, t) //~ use of moved value: `t`
|
|
|
|
}
|
|
|
|
|
|
|
|
struct S<T>(T);
|
|
|
|
trait Trait {}
|
|
|
|
impl<T: Trait + Clone> Clone for S<T> {
|
|
|
|
fn clone(&self) -> Self {
|
|
|
|
Self(self.0.clone())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
impl<T: Trait + Copy> Copy for S<T> {}
|
|
|
|
|
|
|
|
trait A {}
|
|
|
|
trait B {}
|
|
|
|
|
|
|
|
// Test where bounds are added with different bound placements
|
2022-06-02 12:34:55 -07:00
|
|
|
fn duplicate_custom_1<T: Copy + Trait>(t: S<T>) -> (S<T>, S<T>) where {
|
2022-03-01 14:11:42 +03:00
|
|
|
//~^ HELP consider restricting type parameter `T`
|
|
|
|
(t, t) //~ use of moved value: `t`
|
|
|
|
}
|
|
|
|
|
|
|
|
fn duplicate_custom_2<T>(t: S<T>) -> (S<T>, S<T>)
|
|
|
|
where
|
2022-06-02 12:34:55 -07:00
|
|
|
T: A + Copy + Trait,
|
2022-03-01 14:11:42 +03:00
|
|
|
//~^ HELP consider further restricting this bound
|
|
|
|
{
|
|
|
|
(t, t) //~ use of moved value: `t`
|
|
|
|
}
|
|
|
|
|
|
|
|
fn duplicate_custom_3<T>(t: S<T>) -> (S<T>, S<T>)
|
|
|
|
where
|
2022-06-02 12:34:55 -07:00
|
|
|
T: A + Copy + Trait,
|
2022-03-14 15:56:37 +01:00
|
|
|
//~^ HELP consider further restricting this bound
|
|
|
|
T: B,
|
2022-03-01 14:11:42 +03:00
|
|
|
{
|
|
|
|
(t, t) //~ use of moved value: `t`
|
|
|
|
}
|
|
|
|
|
2022-06-02 12:34:55 -07:00
|
|
|
fn duplicate_custom_4<T: A + Copy + Trait>(t: S<T>) -> (S<T>, S<T>)
|
2022-03-14 15:56:37 +01:00
|
|
|
//~^ HELP consider further restricting this bound
|
2022-03-01 14:11:42 +03:00
|
|
|
where
|
2022-03-14 15:56:37 +01:00
|
|
|
T: B,
|
2022-03-01 14:11:42 +03:00
|
|
|
{
|
|
|
|
(t, t) //~ use of moved value: `t`
|
|
|
|
}
|
|
|
|
|
2022-04-12 12:14:43 +04:00
|
|
|
#[rustfmt::skip]
|
2022-04-28 21:59:41 +02:00
|
|
|
fn existing_colon<T: Copy>(t: T) {
|
2022-04-12 12:14:43 +04:00
|
|
|
//~^ HELP consider restricting type parameter `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
|
|
|
//~| HELP if `T` implemented `Clone`, you could clone the value
|
2022-04-12 12:14:43 +04:00
|
|
|
[t, t]; //~ 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
|
|
|
fn existing_colon_in_where<T>(t: T) //~ HELP if `T` implemented `Clone`, you could clone the value
|
2022-04-12 12:14:43 +04:00
|
|
|
where
|
2022-03-14 15:56:37 +01:00
|
|
|
T:, T: Copy
|
|
|
|
//~^ HELP consider further restricting type parameter `T`
|
2022-04-12 12:14:43 +04:00
|
|
|
{
|
|
|
|
[t, t]; //~ use of moved value: `t`
|
|
|
|
}
|
|
|
|
|
2022-03-01 14:11:42 +03:00
|
|
|
fn main() {}
|