13 lines
511 B
Plaintext
13 lines
511 B
Plaintext
|
|
error[E0592]: duplicate definitions with name `test`
|
||
|
|
--> $DIR/trait-object-auto-dedup-in-impl.rs:24:5
|
||
|
|
|
|
||
|
|
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`.
|