diff options
| author | Eric Holk <ericholk@microsoft.com> | 2025-03-13 16:14:31 -0700 |
|---|---|---|
| committer | Eric Holk <ericholk@microsoft.com> | 2025-03-14 12:21:59 -0700 |
| commit | ed1778c226591425b31f93ae01a2997fcbbcc738 (patch) | |
| tree | 29048025704fb915bb96e09e096e613c9a00d381 | |
| parent | 9576c712ccc22ce09be4317b90813600d2af2533 (diff) | |
| download | rust-ed1778c226591425b31f93ae01a2997fcbbcc738.tar.gz rust-ed1778c226591425b31f93ae01a2997fcbbcc738.zip | |
Fix clippy
| -rw-r--r-- | clippy_lints/src/suspicious_operation_groupings.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clippy_lints/src/suspicious_operation_groupings.rs b/clippy_lints/src/suspicious_operation_groupings.rs index 0d809c17989..206912d8de4 100644 --- a/clippy_lints/src/suspicious_operation_groupings.rs +++ b/clippy_lints/src/suspicious_operation_groupings.rs @@ -528,7 +528,7 @@ fn ident_difference_expr_with_base_location( &strip_non_ident_wrappers(left).kind, &strip_non_ident_wrappers(right).kind, ) { - (Yield(_), Yield(_)) + (Yield(_, _), Yield(_, _)) | (Try(_), Try(_)) | (Paren(_), Paren(_)) | (Repeat(_, _), Repeat(_, _)) |
