summaryrefslogtreecommitdiffstats
path: root/src/test/ui/mut/mut-suggestion.stderr
blob: cba284550b95a3cb818dd5ad8c693a3006c78669 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
error[E0596]: cannot borrow `arg` as mutable, as it is not declared as mutable
  --> $DIR/mut-suggestion.rs:12:5
   |
LL | fn func(arg: S) {
   |         --- help: consider changing this to be mutable: `mut arg`
...
LL |     arg.mutate();
   |     ^^^^^^^^^^^^ cannot borrow as mutable

error[E0596]: cannot borrow `local` as mutable, as it is not declared as mutable
  --> $DIR/mut-suggestion.rs:20:5
   |
LL |     let local = S;
   |         ----- help: consider changing this to be mutable: `mut local`
...
LL |     local.mutate();
   |     ^^^^^^^^^^^^^^ cannot borrow as mutable

error: aborting due to 2 previous errors

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