2018-06-01 08:52:07 -07:00
|
|
|
error[E0592]: duplicate definitions with name `test`
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/trait-object-auto-dedup-in-impl.rs:14:5
|
2018-06-01 08:52:07 -07:00
|
|
|
|
|
|
|
|
|
LL | fn test(&self) { println!("one"); } //~ ERROR duplicate definitions with name `test`
|
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ duplicate definitions for `test`
|
|
|
|
|
...
|
|
|
|
|
LL | fn test(&self) { println!("two"); }
|
|
|
|
|
| ----------------------------------- other definition for `test`
|
|
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0592`.
|