rust/src/test/ui/nll/match-guards-partially-borrow.stderr

88 lines
2.5 KiB
Plaintext
Raw Normal View History

2018-09-13 16:04:00 -05:00
error[E0510]: cannot assign `q` in match guard
--> $DIR/match-guards-partially-borrow.rs:59:13
2018-09-13 16:04:00 -05:00
|
LL | match q {
| - value is immutable in match guard
...
2019-03-09 06:03:44 -06:00
LL | q = true;
2018-09-13 16:04:00 -05:00
| ^^^^^^^^ cannot assign
error[E0510]: cannot assign `r` in match guard
--> $DIR/match-guards-partially-borrow.rs:71:13
2018-09-13 16:04:00 -05:00
|
LL | match r {
| - value is immutable in match guard
...
2019-03-09 06:03:44 -06:00
LL | r = true;
2018-09-13 16:04:00 -05:00
| ^^^^^^^^ cannot assign
error[E0510]: cannot assign `t` in match guard
--> $DIR/match-guards-partially-borrow.rs:95:13
2018-09-13 16:04:00 -05:00
|
LL | match t {
| - value is immutable in match guard
...
2019-03-09 06:03:44 -06:00
LL | t = true;
2018-09-13 16:04:00 -05:00
| ^^^^^^^^ cannot assign
error[E0510]: cannot mutably borrow `x.0` in match guard
--> $DIR/match-guards-partially-borrow.rs:109:22
2018-09-13 16:04:00 -05:00
|
LL | match x {
| - value is immutable in match guard
...
2019-03-09 06:03:44 -06:00
LL | Some(ref mut r) => *r = None,
2018-09-13 16:04:00 -05:00
| ^^^^^^^^^ cannot mutably borrow
error[E0506]: cannot assign to `t` because it is borrowed
--> $DIR/match-guards-partially-borrow.rs:121:13
|
LL | s if {
| - borrow of `t` occurs here
2019-03-09 06:03:44 -06:00
LL | t = !t;
| ^^^^^^ assignment to borrowed `t` occurs here
LL | false
LL | } => (), // What value should `s` have in the arm?
2018-09-13 16:04:00 -05:00
| - borrow later used here
error[E0510]: cannot assign `y` in match guard
--> $DIR/match-guards-partially-borrow.rs:132:13
2018-09-13 16:04:00 -05:00
|
LL | match *y {
| -- value is immutable in match guard
...
2019-03-09 06:03:44 -06:00
LL | y = &true;
2018-09-13 16:04:00 -05:00
| ^^^^^^^^^ cannot assign
error[E0510]: cannot assign `z` in match guard
--> $DIR/match-guards-partially-borrow.rs:143:13
2018-09-13 16:04:00 -05:00
|
LL | match z {
| - value is immutable in match guard
...
2019-03-09 06:03:44 -06:00
LL | z = &true;
2018-09-13 16:04:00 -05:00
| ^^^^^^^^^ cannot assign
error[E0510]: cannot assign `a` in match guard
--> $DIR/match-guards-partially-borrow.rs:155:13
2018-09-13 16:04:00 -05:00
|
LL | match a {
| - value is immutable in match guard
...
2019-03-09 06:03:44 -06:00
LL | a = &true;
2018-09-13 16:04:00 -05:00
| ^^^^^^^^^ cannot assign
error[E0510]: cannot assign `b` in match guard
--> $DIR/match-guards-partially-borrow.rs:166:13
2018-09-13 16:04:00 -05:00
|
LL | match b {
| - value is immutable in match guard
...
2019-03-09 06:03:44 -06:00
LL | b = &true;
2018-09-13 16:04:00 -05:00
| ^^^^^^^^^ cannot assign
error: aborting due to 9 previous errors
2018-09-13 16:04:00 -05:00
Some errors occurred: E0506, E0510.
For more information about an error, try `rustc --explain E0506`.