rust/src/test/ui/impl-duplicate-methods.stderr
2017-12-14 23:26:39 +03:00

10 lines
317 B
Text

error[E0201]: duplicate definitions with name `orange`:
--> $DIR/impl-duplicate-methods.rs:15:5
|
14 | fn orange(&self) {}
| ------------------- previous definition of `orange` here
15 | fn orange(&self) {}
| ^^^^^^^^^^^^^^^^^^^ duplicate definition
error: aborting due to previous error