1
Fork 0
rust/src/test/ui/mut/mutable-class-fields.stderr

11 lines
349 B
Text
Raw Normal View History

error[E0594]: cannot assign to `nyan.how_hungry`, as `nyan` is not declared as mutable
--> $DIR/mutable-class-fields.rs:15:3
2018-08-08 14:28:26 +02:00
|
LL | let nyan : Cat = cat(52, 99);
| ---- help: consider changing this to be mutable: `mut nyan`
LL | nyan.how_hungry = 0;
| ^^^^^^^^^^^^^^^^^^^ cannot assign
2018-08-08 14:28:26 +02:00
error: aborting due to previous error