1
Fork 0
rust/src/test/ui/unop-move-semantics.stderr

56 lines
1.8 KiB
Text
Raw Normal View History

error[E0382]: borrow of moved value: `x`
2018-12-25 08:56:47 -07:00
--> $DIR/unop-move-semantics.rs:8:5
2018-08-08 14:28:26 +02: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
2018-08-08 14:28:26 +02:00
LL | !x;
| - value moved here
2018-08-08 14:28:26 +02:00
LL |
2019-03-09 15:03:44 +03:00
LL | x.clone();
| ^ value borrowed here after move
|
help: consider further restricting this bound
|
LL | fn move_then_borrow<T: Not<Output=T> + Clone + Copy>(x: T) {
| ^^^^^^
2018-08-08 14:28:26 +02:00
error[E0505]: cannot move out of `x` because it is borrowed
2018-12-25 08:56:47 -07:00
--> $DIR/unop-move-semantics.rs:15:6
2018-08-08 14:28:26 +02:00
|
LL | let m = &x;
| -- borrow of `x` occurs here
2018-08-08 14:28:26 +02:00
...
2019-03-09 15:03:44 +03:00
LL | !x;
2018-08-08 14:28:26 +02:00
| ^ move out of `x` occurs here
...
LL | use_mut(n); use_imm(m);
| - borrow later used here
2018-08-08 14:28:26 +02:00
error[E0505]: cannot move out of `y` because it is borrowed
2018-12-25 08:56:47 -07:00
--> $DIR/unop-move-semantics.rs:17:6
2018-08-08 14:28:26 +02:00
|
LL | let n = &mut y;
| ------ borrow of `y` occurs here
2018-08-08 14:28:26 +02:00
...
2019-03-09 15:03:44 +03:00
LL | !y;
2018-08-08 14:28:26 +02:00
| ^ move out of `y` occurs here
LL | use_mut(n); use_imm(m);
| - borrow later used here
2018-08-08 14:28:26 +02:00
error[E0507]: cannot move out of `*m` which is behind a mutable reference
2018-12-25 08:56:47 -07:00
--> $DIR/unop-move-semantics.rs:24:6
2018-08-08 14:28:26 +02:00
|
2019-03-09 15:03:44 +03:00
LL | !*m;
| ^^ move occurs because `*m` has type `T`, which does not implement the `Copy` trait
2018-08-08 14:28:26 +02:00
error[E0507]: cannot move out of `*n` which is behind a shared reference
2018-12-25 08:56:47 -07:00
--> $DIR/unop-move-semantics.rs:26:6
2018-08-08 14:28:26 +02:00
|
2019-03-09 15:03:44 +03:00
LL | !*n;
| ^^ move occurs because `*n` has type `T`, which does not implement the `Copy` trait
2018-08-08 14:28:26 +02:00
error: aborting due to 5 previous errors
Some errors have detailed explanations: E0382, E0505, E0507.
2018-08-08 14:28:26 +02:00
For more information about an error, try `rustc --explain E0382`.