Skip to content

Commit 7ba7c06

Browse files
ankddevlpil
authored andcommitted
style: fix Clippy warnings
1 parent 627ff7f commit 7ba7c06

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler-core/src/type_/expression.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4778,7 +4778,7 @@ fn get_empty_list_check_kind<'a>(
47784778
_ => None,
47794779
},
47804780
(TypedExpr::Int { value, .. }, _) => match (binop, value.as_str()) {
4781-
(BinOp::GtEqInt, "0" | "-0") | (BinOp::GtInt, "1") | (BinOp::LtInt, "0" | "-0") => {
4781+
(BinOp::GtEqInt | BinOp::LtInt, "0" | "-0") | (BinOp::GtInt, "1") => {
47824782
Some(EmptyListCheckKind::NonEmpty)
47834783
}
47844784
_ => None,

0 commit comments

Comments
 (0)