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