11 lines
117 B
Rust
11 lines
117 B
Rust
#![feature(plugin)]
|
|
#![plugin(clippy)]
|
|
|
|
#[deny(double_neg)]
|
|
fn main() {
|
|
let x = 1;
|
|
-x;
|
|
-(-x);
|
|
--x;
|
|
}
|