1error[E0201]: duplicate definitions with name `orange`:
2  --> $DIR/impl-duplicate-methods.rs:5:5
3   |
4LL |     fn orange(&self) {}
5   |     ------------------- previous definition of `orange` here
6LL |     fn orange(&self) {}
7   |     ^^^^^^^^^^^^^^^^^^^ duplicate definition
8
9error: aborting due to previous error
10
11For more information about this error, try `rustc --explain E0201`.
12