2018-06-01 10:52:07 -05:00
|
|
|
error[E0592]: duplicate definitions with name `test`
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/trait-object-auto-dedup-in-impl.rs:14:5
|
2018-06-01 10:52:07 -05: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`.
|