blob: 9abd81cdcfa2370acb44f282099db5ce32c2f8e2 [file] [log] [blame]
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`.