Skip to content

Commit ed1778c

Browse files
committed
Fix clippy
1 parent 9576c71 commit ed1778c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clippy_lints/src/suspicious_operation_groupings.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -528,7 +528,7 @@ fn ident_difference_expr_with_base_location(
528528
&strip_non_ident_wrappers(left).kind,
529529
&strip_non_ident_wrappers(right).kind,
530530
) {
531-
(Yield(_), Yield(_))
531+
(Yield(_, _), Yield(_, _))
532532
| (Try(_), Try(_))
533533
| (Paren(_), Paren(_))
534534
| (Repeat(_, _), Repeat(_, _))

0 commit comments

Comments
 (0)