2018-06-01 10:52:07 -05:00
|
|
|
error[E0592]: duplicate definitions with name `test`
|
2021-02-08 16:15:45 -06:00
|
|
|
--> $DIR/auto-dedup-in-impl.rs:14:5
|
2018-06-01 10:52:07 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | fn test(&self) { println!("one"); }
|
2020-08-12 16:02:14 -05:00
|
|
|
| ^^^^^^^^^^^^^^ duplicate definitions for `test`
|
2018-06-01 10:52:07 -05:00
|
|
|
...
|
|
|
|
LL | fn test(&self) { println!("two"); }
|
2020-08-12 16:02:14 -05:00
|
|
|
| -------------- other definition for `test`
|
2018-06-01 10:52:07 -05:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
2019-06-13 20:54:27 -05:00
|
|
|
For more information about this error, try `rustc --explain E0592`.
|