summary refs log tree commit diff
path: root/src/test/ui/class-method-missing.stderr
blob: c1da06e3a3ad6da8202cee0e7ddfdef61b663b84 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
error[E0046]: not all trait items implemented, missing: `eat`
  --> $DIR/class-method-missing.rs:19:1
   |
LL |   fn eat(&self);
   |   -------------- `eat` from trait
...
LL | impl animal for cat {
   | ^^^^^^^^^^^^^^^^^^^ missing `eat` in implementation

error: aborting due to previous error

For more information about this error, try `rustc --explain E0046`.