2020-02-02 10:58:15 -06:00
|
|
|
error: cannot move out of value because it is borrowed
|
2020-11-01 12:35:55 -06:00
|
|
|
--> $DIR/borrowck-pat-at-and-box.rs:32:9
|
2019-11-11 04:39:52 -06:00
|
|
|
|
|
|
|
|
LL | let ref a @ box b = Box::new(NC);
|
2020-01-18 19:47:01 -06:00
|
|
|
| -----^^^^^^^-
|
2019-11-11 04:39:52 -06:00
|
|
|
| | |
|
2020-02-02 10:58:15 -06:00
|
|
|
| | value moved into `b` here
|
|
|
|
| value borrowed, by `a`, here
|
2019-11-11 04:39:52 -06:00
|
|
|
|
2020-02-02 10:58:15 -06:00
|
|
|
error: cannot borrow value as mutable because it is also borrowed as immutable
|
2020-11-01 12:35:55 -06:00
|
|
|
--> $DIR/borrowck-pat-at-and-box.rs:35:9
|
2019-12-14 17:50:44 -06:00
|
|
|
|
|
|
|
|
LL | let ref a @ box ref mut b = Box::new(nc());
|
|
|
|
| -----^^^^^^^---------
|
|
|
|
| | |
|
2020-02-02 10:58:15 -06:00
|
|
|
| | mutable borrow, by `b`, occurs here
|
|
|
|
| immutable borrow, by `a`, occurs here
|
2019-12-14 17:50:44 -06:00
|
|
|
|
2020-02-02 10:58:15 -06:00
|
|
|
error: cannot borrow value as mutable because it is also borrowed as immutable
|
2020-11-01 12:35:55 -06:00
|
|
|
--> $DIR/borrowck-pat-at-and-box.rs:37:9
|
2019-12-14 17:32:20 -06:00
|
|
|
|
|
|
|
|
LL | let ref a @ box ref mut b = Box::new(NC);
|
|
|
|
| -----^^^^^^^---------
|
|
|
|
| | |
|
2020-02-02 10:58:15 -06:00
|
|
|
| | mutable borrow, by `b`, occurs here
|
|
|
|
| immutable borrow, by `a`, occurs here
|
2019-12-14 17:32:20 -06:00
|
|
|
|
2020-02-02 10:58:15 -06:00
|
|
|
error: cannot borrow value as mutable because it is also borrowed as immutable
|
2020-11-01 12:35:55 -06:00
|
|
|
--> $DIR/borrowck-pat-at-and-box.rs:39:9
|
2019-12-14 17:32:20 -06:00
|
|
|
|
|
|
|
|
LL | let ref a @ box ref mut b = Box::new(NC);
|
|
|
|
| -----^^^^^^^---------
|
|
|
|
| | |
|
2020-02-02 10:58:15 -06:00
|
|
|
| | mutable borrow, by `b`, occurs here
|
|
|
|
| immutable borrow, by `a`, occurs here
|
2019-12-14 17:32:20 -06:00
|
|
|
|
2020-02-02 10:58:15 -06:00
|
|
|
error: cannot borrow value as mutable because it is also borrowed as immutable
|
2020-11-01 12:35:55 -06:00
|
|
|
--> $DIR/borrowck-pat-at-and-box.rs:43:9
|
2019-12-14 17:32:20 -06:00
|
|
|
|
|
|
|
|
LL | let ref a @ box ref mut b = Box::new(NC);
|
|
|
|
| -----^^^^^^^---------
|
|
|
|
| | |
|
2020-02-02 10:58:15 -06:00
|
|
|
| | mutable borrow, by `b`, occurs here
|
|
|
|
| immutable borrow, by `a`, occurs here
|
2019-12-14 17:32:20 -06:00
|
|
|
|
2020-02-02 10:58:15 -06:00
|
|
|
error: cannot borrow value as immutable because it is also borrowed as mutable
|
2020-11-01 12:35:55 -06:00
|
|
|
--> $DIR/borrowck-pat-at-and-box.rs:49:9
|
2019-12-14 17:32:20 -06:00
|
|
|
|
|
|
|
|
LL | let ref mut a @ box ref b = Box::new(NC);
|
|
|
|
| ---------^^^^^^^-----
|
|
|
|
| | |
|
2020-02-02 10:58:15 -06:00
|
|
|
| | immutable borrow, by `b`, occurs here
|
|
|
|
| mutable borrow, by `a`, occurs here
|
2019-12-14 17:32:20 -06:00
|
|
|
|
2020-02-02 10:58:15 -06:00
|
|
|
error: cannot borrow value as immutable because it is also borrowed as mutable
|
2020-11-01 12:35:55 -06:00
|
|
|
--> $DIR/borrowck-pat-at-and-box.rs:63:9
|
2019-12-14 20:50:55 -06:00
|
|
|
|
|
|
|
|
LL | ref mut a @ box ref b => {
|
|
|
|
| ---------^^^^^^^-----
|
|
|
|
| | |
|
2020-02-02 10:58:15 -06:00
|
|
|
| | immutable borrow, by `b`, occurs here
|
|
|
|
| mutable borrow, by `a`, occurs here
|
2019-12-14 20:50:55 -06:00
|
|
|
|
2020-02-02 10:58:15 -06:00
|
|
|
error: cannot borrow value as immutable because it is also borrowed as mutable
|
2020-11-01 12:35:55 -06:00
|
|
|
--> $DIR/borrowck-pat-at-and-box.rs:55:11
|
2019-12-14 20:50:55 -06:00
|
|
|
|
|
|
|
|
LL | fn f5(ref mut a @ box ref b: Box<NC>) {
|
|
|
|
| ---------^^^^^^^-----
|
|
|
|
| | |
|
2020-02-02 10:58:15 -06:00
|
|
|
| | immutable borrow, by `b`, occurs here
|
|
|
|
| mutable borrow, by `a`, occurs here
|
2019-12-14 20:50:55 -06:00
|
|
|
|
2020-11-01 12:35:55 -06:00
|
|
|
error[E0382]: borrow of moved value
|
|
|
|
--> $DIR/borrowck-pat-at-and-box.rs:32:9
|
2019-11-11 04:39:52 -06:00
|
|
|
|
|
2020-11-01 12:35:55 -06:00
|
|
|
LL | let ref a @ box b = Box::new(NC);
|
|
|
|
| ^^^^^^^^^^^^-
|
|
|
|
| | |
|
|
|
|
| | value moved here
|
|
|
|
| value borrowed here after move
|
2019-11-11 04:39:52 -06:00
|
|
|
|
|
2020-11-01 12:35:55 -06:00
|
|
|
= note: move occurs because value has type `NC`, which does not implement the `Copy` trait
|
2019-11-11 04:39:52 -06:00
|
|
|
|
2020-11-01 12:35:55 -06:00
|
|
|
error[E0502]: cannot borrow value as immutable because it is also borrowed as mutable
|
|
|
|
--> $DIR/borrowck-pat-at-and-box.rs:39:9
|
2019-12-14 20:50:55 -06:00
|
|
|
|
|
2020-11-01 12:35:55 -06:00
|
|
|
LL | let ref a @ box ref mut b = Box::new(NC);
|
|
|
|
| ^^^^^^^^^^^^---------
|
|
|
|
| | |
|
|
|
|
| | mutable borrow occurs here
|
|
|
|
| immutable borrow occurs here
|
|
|
|
...
|
|
|
|
LL | *b = NC;
|
|
|
|
| ------- mutable borrow later used here
|
2019-12-14 20:50:55 -06:00
|
|
|
|
2020-11-01 12:35:55 -06:00
|
|
|
error[E0502]: cannot borrow value as immutable because it is also borrowed as mutable
|
|
|
|
--> $DIR/borrowck-pat-at-and-box.rs:43:9
|
2019-11-11 04:39:52 -06:00
|
|
|
|
|
|
|
|
LL | let ref a @ box ref mut b = Box::new(NC);
|
2020-11-01 12:35:55 -06:00
|
|
|
| ^^^^^^^^^^^^---------
|
2019-11-11 04:39:52 -06:00
|
|
|
| | |
|
|
|
|
| | mutable borrow occurs here
|
|
|
|
| immutable borrow occurs here
|
|
|
|
...
|
2020-11-01 12:35:55 -06:00
|
|
|
LL | *b = NC;
|
|
|
|
| ------- mutable borrow later used here
|
2019-11-11 04:39:52 -06:00
|
|
|
|
2020-11-01 12:35:55 -06:00
|
|
|
error[E0502]: cannot borrow value as mutable because it is also borrowed as immutable
|
|
|
|
--> $DIR/borrowck-pat-at-and-box.rs:49:9
|
2019-11-11 04:39:52 -06:00
|
|
|
|
|
|
|
|
LL | let ref mut a @ box ref b = Box::new(NC);
|
2020-11-01 12:35:55 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^-----
|
2019-11-11 04:39:52 -06:00
|
|
|
| | |
|
|
|
|
| | immutable borrow occurs here
|
|
|
|
| mutable borrow occurs here
|
2019-12-14 17:32:20 -06:00
|
|
|
...
|
2020-11-01 12:35:55 -06:00
|
|
|
LL | drop(b);
|
|
|
|
| - immutable borrow later used here
|
2019-11-11 04:39:52 -06:00
|
|
|
|
2020-11-01 12:35:55 -06:00
|
|
|
error[E0502]: cannot borrow value as mutable because it is also borrowed as immutable
|
|
|
|
--> $DIR/borrowck-pat-at-and-box.rs:63:9
|
2019-12-14 20:50:55 -06:00
|
|
|
|
|
|
|
|
LL | ref mut a @ box ref b => {
|
2020-11-01 12:35:55 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^-----
|
2019-12-14 20:50:55 -06:00
|
|
|
| | |
|
|
|
|
| | immutable borrow occurs here
|
|
|
|
| mutable borrow occurs here
|
|
|
|
...
|
2020-11-01 12:35:55 -06:00
|
|
|
LL | drop(b);
|
|
|
|
| - immutable borrow later used here
|
2019-12-14 20:50:55 -06:00
|
|
|
|
2020-11-01 12:35:55 -06:00
|
|
|
error[E0502]: cannot borrow value as mutable because it is also borrowed as immutable
|
|
|
|
--> $DIR/borrowck-pat-at-and-box.rs:55:11
|
2019-12-14 20:50:55 -06:00
|
|
|
|
|
|
|
|
LL | fn f5(ref mut a @ box ref b: Box<NC>) {
|
2020-11-01 12:35:55 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^-----
|
2019-12-14 20:50:55 -06:00
|
|
|
| | |
|
|
|
|
| | immutable borrow occurs here
|
|
|
|
| mutable borrow occurs here
|
|
|
|
...
|
2020-11-01 12:35:55 -06:00
|
|
|
LL | drop(b);
|
|
|
|
| - immutable borrow later used here
|
2019-12-14 20:50:55 -06:00
|
|
|
|
2020-11-01 12:35:55 -06:00
|
|
|
error: aborting due to 14 previous errors
|
2019-11-11 04:39:52 -06:00
|
|
|
|
2020-01-18 19:47:01 -06:00
|
|
|
Some errors have detailed explanations: E0382, E0502.
|
|
|
|
For more information about an error, try `rustc --explain E0382`.
|