summary refs log tree commit diff
path: root/src/test/ui/rfc-2005-default-binding-mode/enum.nll.stderr
blob: b97bdeea409c6310e431d7139356b1cf6f07d246 (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
27
error[E0594]: cannot assign to data in a `&` reference
  --> $DIR/enum.rs:19:5
   |
LL |     let Wrap(x) = &Wrap(3);
   |              - help: consider changing this to be a mutable reference: `&mut`
LL |     *x += 1; //~ ERROR cannot assign to immutable
   |     ^^^^^^^

error[E0594]: cannot assign to data in a `&` reference
  --> $DIR/enum.rs:23:9
   |
LL |     if let Some(x) = &Some(3) {
   |                 - help: consider changing this to be a mutable reference: `&mut`
LL |         *x += 1; //~ ERROR cannot assign to immutable
   |         ^^^^^^^

error[E0594]: cannot assign to data in a `&` reference
  --> $DIR/enum.rs:29:9
   |
LL |     while let Some(x) = &Some(3) {
   |                    - help: consider changing this to be a mutable reference: `&mut`
LL |         *x += 1; //~ ERROR cannot assign to immutable
   |         ^^^^^^^

error: aborting due to 3 previous errors

For more information about this error, try `rustc --explain E0594`.