mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-11 07:34:18 +00:00
6feef17071
Changed from `allow` to `warn` in https://github.com/rust-lang/rust/pull/61342
53 lines
790 B
Rust
53 lines
790 B
Rust
fn match_bool() {
|
|
let test: bool = true;
|
|
|
|
match test {
|
|
true => 0,
|
|
false => 42,
|
|
};
|
|
|
|
let option = 1;
|
|
match option == 1 {
|
|
true => 1,
|
|
false => 0,
|
|
};
|
|
|
|
match test {
|
|
true => (),
|
|
false => {
|
|
println!("Noooo!");
|
|
},
|
|
};
|
|
|
|
match test {
|
|
false => {
|
|
println!("Noooo!");
|
|
},
|
|
_ => (),
|
|
};
|
|
|
|
match test && test {
|
|
false => {
|
|
println!("Noooo!");
|
|
},
|
|
_ => (),
|
|
};
|
|
|
|
match test {
|
|
false => {
|
|
println!("Noooo!");
|
|
},
|
|
true => {
|
|
println!("Yes!");
|
|
},
|
|
};
|
|
|
|
// Not linted
|
|
match option {
|
|
1..=10 => 1,
|
|
11..=20 => 2,
|
|
_ => 3,
|
|
};
|
|
}
|
|
|
|
fn main() {}
|