]> git.lizzy.rs Git - rust.git/blob - src/test/ui/did_you_mean/issue-35937.stderr
4a29cd81425c4131a8456332052ac30778a363d6
[rust.git] / src / test / ui / did_you_mean / issue-35937.stderr
1 error[E0596]: cannot borrow field `f.v` of immutable binding as mutable
2   --> $DIR/issue-35937.rs:17:5
3    |
4 LL |     let f = Foo { v: Vec::new() };
5    |         - consider changing this to `mut f`
6 LL |     f.v.push("cat".to_string()); //~ ERROR cannot borrow
7    |     ^^^ cannot mutably borrow field of immutable binding
8
9 error[E0594]: cannot assign to field `s.x` of immutable binding
10   --> $DIR/issue-35937.rs:26:5
11    |
12 LL |     let s = S { x: 42 };
13    |         - consider changing this to `mut s`
14 LL |     s.x += 1; //~ ERROR cannot assign
15    |     ^^^^^^^^ cannot mutably borrow field of immutable binding
16
17 error[E0594]: cannot assign to field `s.x` of immutable binding
18   --> $DIR/issue-35937.rs:30:5
19    |
20 LL | fn bar(s: S) {
21    |        - consider changing this to `mut s`
22 LL |     s.x += 1; //~ ERROR cannot assign
23    |     ^^^^^^^^ cannot mutably borrow field of immutable binding
24
25 error: aborting due to 3 previous errors
26
27 Some errors occurred: E0594, E0596.
28 For more information about an error, try `rustc --explain E0594`.