]> git.proxmox.com Git - rustc.git/blame - src/test/ui/mut/mutable-class-fields-2.stderr
New upstream version 1.34.2+dfsg1
[rustc.git] / src / test / ui / mut / mutable-class-fields-2.stderr
CommitLineData
b7449926 1error[E0594]: cannot assign to field `self.how_hungry` of immutable binding
0731742a 2 --> $DIR/mutable-class-fields-2.rs:9:5
b7449926
XL
3 |
4LL | pub fn eat(&self) {
5 | ----- use `&mut self` here to make mutable
6LL | self.how_hungry -= 5; //~ ERROR cannot assign
7 | ^^^^^^^^^^^^^^^^^^^^ cannot mutably borrow field of immutable binding
8
9error: aborting due to previous error
10
11For more information about this error, try `rustc --explain E0594`.