blob: ad08ae83a49ef92612b9fdbce93c6b9d43b076a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
error[E0594]: cannot assign to immutable borrowed content `*x`
--> $DIR/enum.rs:21:5
|
20 | let Wrap(x) = &Wrap(3);
| - consider changing this to `x`
21 | *x += 1;
| ^^^^^^^ cannot borrow as mutable
error[E0594]: cannot assign to immutable borrowed content `*x`
--> $DIR/enum.rs:25:9
|
24 | if let Some(x) = &Some(3) {
| - consider changing this to `x`
25 | *x += 1;
| ^^^^^^^ cannot borrow as mutable
error[E0594]: cannot assign to immutable borrowed content `*x`
--> $DIR/enum.rs:31:9
|
30 | while let Some(x) = &Some(3) {
| - consider changing this to `x`
31 | *x += 1;
| ^^^^^^^ cannot borrow as mutable
error: aborting due to 3 previous errors
|