diff --git a/crates/ide_assists/src/handlers/destructure_tuple_binding.rs b/crates/ide_assists/src/handlers/destructure_tuple_binding.rs index eebeb2c4a51..a421f577546 100644 --- a/crates/ide_assists/src/handlers/destructure_tuple_binding.rs +++ b/crates/ide_assists/src/handlers/destructure_tuple_binding.rs @@ -6,7 +6,7 @@ use ide_db::{ use itertools::Itertools; use syntax::{ ast::{self, AstNode, FieldExpr, IdentPat, MethodCallExpr, NameOwner}, - match_ast, TextRange, + TextRange, }; use crate::assist_context::{AssistBuilder, AssistContext, Assists};