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