2021-08-13 02:03:31 -06:00
|
|
|
// Regression test for issue #72649
|
|
|
|
// Tests that we don't emit spurious
|
|
|
|
// 'value moved in previous iteration of loop' message
|
|
|
|
|
|
|
|
struct NonCopy;
|
2024-03-17 21:25:38 +00:00
|
|
|
//~^ NOTE if `NonCopy` implemented `Clone`
|
|
|
|
//~| NOTE if `NonCopy` implemented `Clone`
|
|
|
|
//~| NOTE if `NonCopy` implemented `Clone`
|
|
|
|
//~| NOTE if `NonCopy` implemented `Clone`
|
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
|
|
|
//~| NOTE consider implementing `Clone` for this type
|
|
|
|
//~| NOTE consider implementing `Clone` for this type
|
|
|
|
//~| NOTE consider implementing `Clone` for this type
|
|
|
|
//~| NOTE consider implementing `Clone` for this type
|
2021-08-13 02:03:31 -06:00
|
|
|
|
|
|
|
fn good() {
|
|
|
|
loop {
|
|
|
|
let value = NonCopy{};
|
|
|
|
let _used = value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn moved_here_1() {
|
|
|
|
loop {
|
|
|
|
let value = NonCopy{};
|
|
|
|
//~^ NOTE move occurs because `value` has type `NonCopy`, which does not implement the `Copy` trait
|
|
|
|
let _used = value;
|
|
|
|
//~^ NOTE 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
|
|
|
//~| NOTE you could clone this value
|
2021-08-13 02:03:31 -06:00
|
|
|
let _used2 = value; //~ ERROR use of moved value: `value`
|
|
|
|
//~^ NOTE value used here after move
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn moved_here_2() {
|
|
|
|
let value = NonCopy{};
|
|
|
|
//~^ NOTE move occurs because `value` has type `NonCopy`, which does not implement the `Copy` trait
|
2022-11-02 21:22:24 -07:00
|
|
|
loop { //~ NOTE inside of this loop
|
2021-08-13 02:03:31 -06:00
|
|
|
let _used = value;
|
|
|
|
//~^ NOTE 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
|
|
|
//~| NOTE you could clone this value
|
2021-08-13 02:03:31 -06:00
|
|
|
loop {
|
|
|
|
let _used2 = value; //~ ERROR use of moved value: `value`
|
|
|
|
//~^ NOTE value used here after move
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn moved_loop_1() {
|
|
|
|
let value = NonCopy{};
|
|
|
|
//~^ NOTE move occurs because `value` has type `NonCopy`, which does not implement the `Copy` trait
|
2022-11-02 21:22:24 -07:00
|
|
|
loop { //~ NOTE inside of this loop
|
2021-08-13 02:03:31 -06:00
|
|
|
let _used = value; //~ ERROR use of moved value: `value`
|
|
|
|
//~^ NOTE value moved here, in previous iteration of loop
|
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
|
|
|
//~| NOTE you could clone this value
|
2021-08-13 02:03:31 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn moved_loop_2() {
|
|
|
|
let mut value = NonCopy{};
|
|
|
|
//~^ NOTE move occurs because `value` has type `NonCopy`, which does not implement the `Copy` trait
|
|
|
|
let _used = value;
|
|
|
|
value = NonCopy{};
|
2022-11-02 21:22:24 -07:00
|
|
|
loop { //~ NOTE inside of this loop
|
2021-08-13 02:03:31 -06:00
|
|
|
let _used2 = value; //~ ERROR use of moved value: `value`
|
|
|
|
//~^ NOTE value moved here, in previous iteration of loop
|
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
|
|
|
//~| NOTE you could clone this value
|
2021-08-13 02:03:31 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn uninit_1() {
|
|
|
|
loop {
|
2022-06-21 15:54:17 -07:00
|
|
|
let value: NonCopy; //~ NOTE declared here
|
2022-06-21 11:57:45 -07:00
|
|
|
let _used = value; //~ ERROR binding `value` isn't initialized
|
|
|
|
//~^ NOTE `value` used here but it isn't initialized
|
2021-08-13 02:03:31 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn uninit_2() {
|
2022-06-21 15:54:17 -07:00
|
|
|
let mut value: NonCopy; //~ NOTE declared here
|
2021-08-13 02:03:31 -06:00
|
|
|
loop {
|
2022-06-21 11:57:45 -07:00
|
|
|
let _used = value; //~ ERROR binding `value` isn't initialized
|
|
|
|
//~^ NOTE `value` used here but it isn't initialized
|
2021-08-13 02:03:31 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|