38 lines
837 B
Rust
38 lines
837 B
Rust
![]() |
#![feature(plugin)]
|
||
|
#![plugin(clippy)]
|
||
|
|
||
|
#[deny(collapsible_if)]
|
||
|
fn main() {
|
||
|
let x = "hello";
|
||
|
let y = "world";
|
||
|
if x == "hello" { //~ERROR This if statement can be collapsed
|
||
|
if y == "world" {
|
||
|
println!("Hello world!");
|
||
|
}
|
||
|
}
|
||
|
|
||
|
if x == "hello" || x == "world" { //~ERROR This if statement can be collapsed
|
||
|
if y == "world" || y == "hello" {
|
||
|
println!("Hello world!");
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// Works because any if with an else statement cannot be collapsed.
|
||
|
if x == "hello" {
|
||
|
if y == "world" {
|
||
|
println!("Hello world!");
|
||
|
}
|
||
|
} else {
|
||
|
println!("Not Hello world");
|
||
|
}
|
||
|
|
||
|
if x == "hello" {
|
||
|
if y == "world" {
|
||
|
println!("Hello world!");
|
||
|
} else {
|
||
|
println!("Hello something else");
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|