2018-07-28 15:34:52 +00:00
|
|
|
#![warn(clippy::duplicate_underscore_argument)]
|
2016-01-03 13:00:42 +00:00
|
|
|
#[allow(dead_code, unused)]
|
|
|
|
|
2017-02-08 13:58:07 +00:00
|
|
|
fn join_the_dark_side(darth: i32, _darth: i32) {}
|
2023-07-28 19:35:48 +00:00
|
|
|
//~^ ERROR: `darth` already exists, having another argument having almost the same name ma
|
|
|
|
//~| NOTE: `-D clippy::duplicate-underscore-argument` implied by `-D warnings`
|
2016-01-03 13:00:42 +00:00
|
|
|
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);
|
2017-02-08 13:58:07 +00:00
|
|
|
}
|