summaryrefslogtreecommitdiffstats
path: root/tests/ui/borrowck/issue-115259-suggest-iter-mut.stderr
blob: 40ab2e61d6a42d52b7da18695da6a8f58323390c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
error[E0596]: cannot borrow `**layer` as mutable, as it is behind a `&` reference
  --> $DIR/issue-115259-suggest-iter-mut.rs:15:65
   |
LL |         self.layers.iter().fold(0, |result, mut layer| result + layer.process())
   |                                             ---------           ^^^^^ `layer` is a `&` reference, so the data it refers to cannot be borrowed as mutable
   |                                             |
   |                                             consider changing this binding's type to be: `&mut Box<dyn Layer>`
   |
help: you may want to use `iter_mut` here
   |
LL |         self.layers.iter_mut().fold(0, |result, mut layer| result + layer.process())
   |                     ~~~~~~~~

error: aborting due to 1 previous error

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