David Wood | b16a306 | 2018-08-08 12:28:26 | [diff] [blame^] | 1 | error[E0046]: not all trait items implemented, missing: `eat` |
2 | --> $DIR/class-method-missing.rs:19:1 | ||||
3 | | | ||||
4 | LL | fn eat(&self); | ||||
5 | | -------------- `eat` from trait | ||||
6 | ... | ||||
7 | LL | impl animal for cat { | ||||
8 | | ^^^^^^^^^^^^^^^^^^^ missing `eat` in implementation | ||||
9 | |||||
10 | error: aborting due to previous error | ||||
11 | |||||
12 | For more information about this error, try `rustc --explain E0046`. |