summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/duplicate_underscore_argument.stderr
blob: f71614a5fd16e199c5688cc6dacf335c1d303a50 (plain)
1
2
3
4
5
6
7
8
9
10
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`

error: aborting due to previous error