about summary refs log tree commit diff
path: root/src/test/ui/impl-duplicate-methods.stderr
blob: b6dc4882fc8f3827e8f1c67efe2abc03d38d6eec (plain)
1
2
3
4
5
6
7
8
9
10
11
error[E0201]: duplicate definitions with name `orange`:
  --> $DIR/impl-duplicate-methods.rs:5:5
   |
LL |     fn orange(&self) {}
   |     ------------------- previous definition of `orange` here
LL |     fn orange(&self) {}
   |     ^^^^^^^^^^^^^^^^^^^ duplicate definition

error: aborting due to previous error

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