Sign in
rust
/
rust-clippy
/
refs/heads/master
/
.
/
tests
/
ui
/
duplicate_underscore_argument.rs
blob: 820930bc6c12c7b5f86bb4cb513433865a11e153 [
file
] [
log
] [
blame
] [
edit
]
#![
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
()
{}