rust-clippy/tests/ui/is_unit_expr.rs

49 lines
796 B
Rust
Raw Normal View History

2017-09-03 15:56:34 +00:00
#![feature(plugin)]
2017-09-03 17:39:28 +00:00
#![plugin(clippy)]
#![warn(unit_expr)]
2017-09-03 15:56:34 +00:00
#[allow(unused_variables)]
fn main() {
2017-09-03 20:46:49 +00:00
// lint should note removing the semicolon from "baz"
2017-09-03 15:56:34 +00:00
let x = {
"foo";
"baz";
};
2017-09-03 20:46:49 +00:00
// lint should ignore false positive.
let y = if true {
"foo"
} else {
return;
};
2017-09-03 20:46:49 +00:00
// lint should note removing semicolon from "bar"
let z = if true {
"foo";
2017-09-03 20:46:49 +00:00
} else {
"bar";
};
let a1 = Some(5);
2017-09-03 20:46:49 +00:00
// lint should ignore false positive
let a2 = match a1 {
Some(x) => x,
2017-09-03 20:46:49 +00:00
_ => {
return;
},
};
2017-09-03 20:46:49 +00:00
// lint should note removing the semicolon after `x;`
let a3 = match a1 {
2017-09-03 20:46:49 +00:00
Some(x) => {
x;
},
_ => {
0;
},
};
2017-09-03 15:56:34 +00:00
}