Sign in
fuchsia
/
third_party
/
rust
/
ddb8551e03a1310a841da05b0418b49fd6287482
/
.
/
src
/
tools
/
clippy
/
tests
/
ui
/
double_neg.rs
blob: 3be8c62887381fb3b47ca45d16be90fd02e62edd [
file
] [
log
] [
blame
]
#[
warn
(
clippy
::
double_neg
)]
#[
allow
(
clippy
::
no_effect
)]
fn
main
()
{
let
x
=
1
;
-
x
;
-(-
x
);
--
x
;
//~^ ERROR: `--x` could be misinterpreted as pre-decrement by C programmers, is usually
//~| NOTE: `-D clippy::double-neg` implied by `-D warnings`
}