rust/src/test/ui/unop-move-semantics.nll.stderr

53 lines
1.6 KiB
Plaintext
Raw Normal View History

2018-08-08 07:28:26 -05:00
error[E0382]: borrow of moved value: `x`
2018-12-25 09:56:47 -06:00
--> $DIR/unop-move-semantics.rs:8:5
2018-08-08 07:28:26 -05:00
|
2019-01-24 12:53:43 -06:00
LL | fn move_then_borrow<T: Not<Output=T> + Clone>(x: T) {
| - - move occurs because `x` has type `T`, which does not implement the `Copy` trait
| |
| consider adding a `Copy` constraint to this type argument
2018-08-08 07:28:26 -05:00
LL | !x;
| - value moved here
LL |
2019-03-11 15:18:35 -05:00
LL | x.clone();
2018-08-08 07:28:26 -05:00
| ^ value borrowed here after move
error[E0505]: cannot move out of `x` because it is borrowed
2018-12-25 09:56:47 -06:00
--> $DIR/unop-move-semantics.rs:15:6
|
LL | let m = &x;
| -- borrow of `x` occurs here
...
2019-03-11 15:18:35 -05:00
LL | !x;
| ^ move out of `x` occurs here
...
LL | use_mut(n); use_imm(m);
| - borrow later used here
error[E0505]: cannot move out of `y` because it is borrowed
2018-12-25 09:56:47 -06:00
--> $DIR/unop-move-semantics.rs:17:6
|
LL | let n = &mut y;
| ------ borrow of `y` occurs here
...
2019-03-11 15:18:35 -05:00
LL | !y;
| ^ move out of `y` occurs here
LL | use_mut(n); use_imm(m);
| - borrow later used here
2018-08-08 07:28:26 -05:00
error[E0507]: cannot move out of borrowed content
2018-12-25 09:56:47 -06:00
--> $DIR/unop-move-semantics.rs:24:6
2018-08-08 07:28:26 -05:00
|
2019-03-11 15:18:35 -05:00
LL | !*m;
2018-08-08 07:28:26 -05:00
| ^^ cannot move out of borrowed content
error[E0507]: cannot move out of borrowed content
2018-12-25 09:56:47 -06:00
--> $DIR/unop-move-semantics.rs:26:6
2018-08-08 07:28:26 -05:00
|
2019-03-11 15:18:35 -05:00
LL | !*n;
2018-08-08 07:28:26 -05:00
| ^^ cannot move out of borrowed content
error: aborting due to 5 previous errors
2018-08-08 07:28:26 -05:00
Some errors occurred: E0382, E0505, E0507.
2018-08-08 07:28:26 -05:00
For more information about an error, try `rustc --explain E0382`.