blob: 0dc0fc230c8de76aba00125994f865be24b42892 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
#![allow(clippy::eq_op, clippy::nonminimal_bool)]
#[rustfmt::skip]
#[warn(clippy::collapsible_if)]
fn main() {
let (x, y) = ("hello", "world");
if x == "hello" {
todo!()
}
// Comment must be kept
else if y == "world" {
println!("Hello world!");
}
//~^^^^^^ collapsible_else_if
if x == "hello" {
todo!()
} // Inner comment
else if y == "world" {
println!("Hello world!");
}
//~^^^^^ collapsible_else_if
if x == "hello" {
todo!()
}
/* Inner comment */
else if y == "world" {
println!("Hello world!");
}
//~^^^^^^ collapsible_else_if
if x == "hello" {
todo!()
} /* Inner comment */
else if y == "world" {
println!("Hello world!");
}
//~^^^^^ collapsible_else_if
if x == "hello" {
todo!()
} /* This should not be removed */ /* So does this */
// Comment must be kept
else if y == "world" {
println!("Hello world!");
}
//~^^^^^^ collapsible_else_if
}
|