]> git.lizzy.rs Git - rust.git/blob - src/test/ui/mut/mutable-class-fields-2.stderr
Rollup merge of #67749 - gilescope:keyword-in, r=Dylan-DPC
[rust.git] / src / test / ui / mut / mutable-class-fields-2.stderr
1 error[E0594]: cannot assign to `self.how_hungry` which is behind a `&` reference
2   --> $DIR/mutable-class-fields-2.rs:9:5
3    |
4 LL |   pub fn eat(&self) {
5    |              ----- help: consider changing this to be a mutable reference: `&mut self`
6 LL |     self.how_hungry -= 5;
7    |     ^^^^^^^^^^^^^^^^^^^^ `self` is a `&` reference, so the data it refers to cannot be written
8
9 error: aborting due to previous error
10
11 For more information about this error, try `rustc --explain E0594`.