2017-02-07 14:05:30 -06:00
|
|
|
error: `darth` already exists, having another argument having almost the same name makes code comprehension and documentation more difficult
|
2019-01-07 15:33:18 -06:00
|
|
|
--> $DIR/duplicate_underscore_argument.rs:4:23
|
2018-10-06 11:18:06 -05:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | fn join_the_dark_side(darth: i32, _darth: i32) {}
|
2018-10-06 11:18:06 -05:00
|
|
|
| ^^^^^
|
|
|
|
|
|
|
|
|
= note: `-D clippy::duplicate-underscore-argument` implied by `-D warnings`
|
2023-08-01 07:02:21 -05:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::duplicate_underscore_argument)]`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
2018-01-16 10:06:27 -06:00
|
|
|
error: aborting due to previous error
|
|
|
|
|