David Wood | b16a306 | 2018-08-08 12:28:26 | [diff] [blame] | 1 | error[E0046]: not all trait items implemented, missing: `eat` |
Mark Rousskov | 2a66355 | 2018-12-25 15:56:47 | [diff] [blame] | 2 | --> $DIR/class-method-missing.rs:9:1 |
David Wood | b16a306 | 2018-08-08 12:28:26 | [diff] [blame] | 3 | | |
| 4 | LL | fn eat(&self); |
| 5 | | -------------- `eat` from trait |
| 6 | ... |
Andy Russell | 6474de9 | 2018-12-17 03:21:47 | [diff] [blame] | 7 | LL | impl Animal for Cat { |
David Wood | b16a306 | 2018-08-08 12:28:26 | [diff] [blame] | 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`. |