Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/ide-assists/src/handlers/invert_if.rs')
-rw-r--r--crates/ide-assists/src/handlers/invert_if.rs12
1 files changed, 12 insertions, 0 deletions
diff --git a/crates/ide-assists/src/handlers/invert_if.rs b/crates/ide-assists/src/handlers/invert_if.rs
index d198870b02..7576d2fab9 100644
--- a/crates/ide-assists/src/handlers/invert_if.rs
+++ b/crates/ide-assists/src/handlers/invert_if.rs
@@ -125,6 +125,18 @@ mod tests {
}
#[test]
+ fn invert_if_doesnt_apply_with_if_let_chain() {
+ check_assist_not_applicable(
+ invert_if,
+ "fn f() { i$0f x && let Some(_) = Some(1) { 1 } else { 0 } }",
+ );
+ check_assist_not_applicable(
+ invert_if,
+ "fn f() { i$0f let Some(_) = Some(1) && x { 1 } else { 0 } }",
+ );
+ }
+
+ #[test]
fn invert_if_option_case() {
check_assist(
invert_if,