Account for let_chains in collapsible_if ui test cases.
This commit is contained in:
parent
b918594369
commit
6ef8b57e34
@ -172,4 +172,25 @@ else {
|
||||
println!("Hello world!");
|
||||
}
|
||||
}
|
||||
|
||||
// Test behavior wrt. `let_chains`.
|
||||
// None of the cases below should be collapsed.
|
||||
fn truth() -> bool { true }
|
||||
|
||||
// Prefix:
|
||||
if let 0 = 1 {
|
||||
if truth() {}
|
||||
}
|
||||
|
||||
// Suffix:
|
||||
if truth() {
|
||||
if let 0 = 1 {}
|
||||
}
|
||||
|
||||
// Midfix:
|
||||
if truth() {
|
||||
if let 0 = 1 {
|
||||
if truth() {}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -200,4 +200,25 @@ fn main() {
|
||||
println!("Hello world!");
|
||||
}
|
||||
}
|
||||
|
||||
// Test behavior wrt. `let_chains`.
|
||||
// None of the cases below should be collapsed.
|
||||
fn truth() -> bool { true }
|
||||
|
||||
// Prefix:
|
||||
if let 0 = 1 {
|
||||
if truth() {}
|
||||
}
|
||||
|
||||
// Suffix:
|
||||
if truth() {
|
||||
if let 0 = 1 {}
|
||||
}
|
||||
|
||||
// Midfix:
|
||||
if truth() {
|
||||
if let 0 = 1 {
|
||||
if truth() {}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user