mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-24 05:33:27 +00:00
11 lines
435 B
Rust
11 lines
435 B
Rust
#![warn(clippy::duplicate_underscore_argument)]
|
|
|
|
fn join_the_dark_side(darth: i32, _darth: i32) {}
|
|
//~^ ERROR: `darth` already exists, having another argument having almost the same name ma
|
|
//~| NOTE: `-D clippy::duplicate-underscore-argument` implied by `-D warnings`
|
|
fn join_the_light_side(knight: i32, _master: i32) {} // the Force is strong with this one
|
|
|
|
fn main() {
|
|
join_the_dark_side(0, 0);
|
|
join_the_light_side(0, 0);
|
|
}
|