summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/duplicate_underscore_argument.stderr
blob: f47f6c89622d1760fe281ef19acb5e002e86a561 (plain)
1
2
3
4
5
6
7
8
9
10
11
error: `darth` already exists, having another argument having almost the same name makes code comprehension and documentation more difficult
  --> $DIR/duplicate_underscore_argument.rs:4:23
   |
LL | fn join_the_dark_side(darth: i32, _darth: i32) {}
   |                       ^^^^^
   |
   = note: `-D clippy::duplicate-underscore-argument` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::duplicate_underscore_argument)]`

error: aborting due to previous error