This website requires JavaScript.
Explore
Help
Register
Sign In
mikros
/
rust
Watch
1
Star
0
Fork
0
You've already forked rust
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
ad164939ed
rust
/
tests
/
ui
/
double_neg.rs
11 lines
80 B
Rust
Raw
Normal View
History
Unescape
Escape
Reduce the hackiness of cargo-clippy
2017-09-18 05:47:33 -05:00
new lint: double_neg
2016-06-29 18:00:25 -05:00
Make most tests an `example` so we can run them one by one
2017-05-17 07:19:44 -05:00
#[
warn(double_neg)
]
new lint: double_neg
2016-06-29 18:00:25 -05:00
fn
main
(
)
{
let
x
=
1
;
-
x
;
-
(
-
x
)
;
remove all //~ from tests
2017-02-08 07:58:07 -06:00
-
-
x
;
new lint: double_neg
2016-06-29 18:00:25 -05:00
}
Reference in New Issue
Copy Permalink