blob: 8344c122f16c8c52ec2abfe4879b1db2bfb50986 (
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
51
52
53
54
55
|
#![allow(clippy::eq_op, clippy::nonminimal_bool)]
#[rustfmt::skip]
#[warn(clippy::collapsible_if)]
fn main() {
let (x, y) = ("hello", "world");
if x == "hello" {
todo!()
} else {
// Comment must be kept
if y == "world" {
println!("Hello world!");
}
}
//~^^^^^^ collapsible_else_if
if x == "hello" {
todo!()
} else { // Inner comment
if y == "world" {
println!("Hello world!");
}
}
//~^^^^^ collapsible_else_if
if x == "hello" {
todo!()
} else {
/* Inner comment */
if y == "world" {
println!("Hello world!");
}
}
//~^^^^^^ collapsible_else_if
if x == "hello" {
todo!()
} else { /* Inner comment */
if y == "world" {
println!("Hello world!");
}
}
//~^^^^^ collapsible_else_if
if x == "hello" {
todo!()
} /* This should not be removed */ else /* So does this */ {
// Comment must be kept
if y == "world" {
println!("Hello world!");
}
}
//~^^^^^^ collapsible_else_if
}
|