Fix span for or_fun_call

This commit is contained in:
alex-semenyuk 2022-07-10 13:11:19 +03:00
parent 526f02ef05
commit 97cd46fa33
3 changed files with 37 additions and 104 deletions

View file

@ -185,7 +185,8 @@ mod issue8239 {
.reduce(|mut acc, f| {
acc.push_str(&f);
acc
}).unwrap_or_default();
})
.unwrap_or_default();
}
fn more_to_max_suggestion_highest_lines_1() {
@ -197,7 +198,8 @@ mod issue8239 {
let _ = "";
acc.push_str(&f);
acc
}).unwrap_or_default();
})
.unwrap_or_default();
}
fn equal_to_max_suggestion_highest_lines() {
@ -208,7 +210,8 @@ mod issue8239 {
let _ = "";
acc.push_str(&f);
acc
}).unwrap_or_default();
})
.unwrap_or_default();
}
fn less_than_max_suggestion_highest_lines() {
@ -218,7 +221,8 @@ mod issue8239 {
map.reduce(|mut acc, f| {
acc.push_str(&f);
acc
}).unwrap_or_default();
})
.unwrap_or_default();
}
}