Sign in
rust
/
rust-clippy
/
ef6e711dc1c8feaa1f00a41bc5b0ca9fcbce1fb3
/
.
/
tests
/
ui
/
duplicate_underscore_argument.rs
blob: 820930bc6c12c7b5f86bb4cb513433865a11e153 [
file
]
#![
warn
(
clippy
::
duplicate_underscore_argument
)]
fn
join_the_dark_side
(
darth
:
i32
,
_darth
:
i32
)
{}
//~^ duplicate_underscore_argument
fn
join_the_light_side
(
knight
:
i32
,
_master
:
i32
)
{}
// the Force is strong with this one
fn
main
()
{}