2018-12-16 22:21:47 -05:00
|
|
|
error[E0615]: attempted to take value of method `speak` on type `Cat`
|
2022-09-15 11:29:12 +10:00
|
|
|
--> $DIR/assign-to-method.rs:21:10
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2020-02-25 00:21:45 +09:00
|
|
|
LL | nyan.speak = || println!("meow");
|
2020-03-22 11:18:06 -07:00
|
|
|
| ^^^^^ method, not a field
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2019-01-02 17:01:03 -05:00
|
|
|
= help: methods are immutable and cannot be assigned to
|
2018-08-08 14:28:26 +02:00
|
|
|
|
2019-01-02 17:01:03 -05:00
|
|
|
error[E0615]: attempted to take value of method `speak` on type `Cat`
|
2022-09-15 11:29:12 +10:00
|
|
|
--> $DIR/assign-to-method.rs:22:10
|
2019-01-02 17:01:03 -05:00
|
|
|
|
|
2020-02-25 00:21:45 +09:00
|
|
|
LL | nyan.speak += || println!("meow");
|
2020-03-22 11:18:06 -07:00
|
|
|
| ^^^^^ method, not a field
|
2019-01-02 17:01:03 -05:00
|
|
|
|
|
|
|
|
= help: methods are immutable and cannot be assigned to
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0615`.
|