Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/ide_assists/src/handlers/destructure_tuple_binding.rs')
| -rw-r--r-- | crates/ide_assists/src/handlers/destructure_tuple_binding.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ide_assists/src/handlers/destructure_tuple_binding.rs b/crates/ide_assists/src/handlers/destructure_tuple_binding.rs index a421f57754..a57b3c3904 100644 --- a/crates/ide_assists/src/handlers/destructure_tuple_binding.rs +++ b/crates/ide_assists/src/handlers/destructure_tuple_binding.rs @@ -5,7 +5,7 @@ use ide_db::{ }; use itertools::Itertools; use syntax::{ - ast::{self, AstNode, FieldExpr, IdentPat, MethodCallExpr, NameOwner}, + ast::{self, AstNode, FieldExpr, HasName, IdentPat, MethodCallExpr}, TextRange, }; |