@@ -71,8 +71,6 @@ store.register_group(true, "clippy::all", Some("clippy_all"), vec![
7171 LintId :: of( erasing_op:: ERASING_OP ) ,
7272 LintId :: of( escape:: BOXED_LOCAL ) ,
7373 LintId :: of( eta_reduction:: REDUNDANT_CLOSURE ) ,
74- LintId :: of( eval_order_dependence:: DIVERGING_SUB_EXPRESSION ) ,
75- LintId :: of( eval_order_dependence:: EVAL_ORDER_DEPENDENCE ) ,
7674 LintId :: of( explicit_write:: EXPLICIT_WRITE ) ,
7775 LintId :: of( float_equality_without_abs:: FLOAT_EQUALITY_WITHOUT_ABS ) ,
7876 LintId :: of( float_literal:: EXCESSIVE_PRECISION ) ,
@@ -230,6 +228,8 @@ store.register_group(true, "clippy::all", Some("clippy_all"), vec![
230228 LintId :: of( misc_early:: REDUNDANT_PATTERN ) ,
231229 LintId :: of( misc_early:: UNNEEDED_WILDCARD_PATTERN ) ,
232230 LintId :: of( misc_early:: ZERO_PREFIXED_LITERAL ) ,
231+ LintId :: of( mixed_read_write_in_expression:: DIVERGING_SUB_EXPRESSION ) ,
232+ LintId :: of( mixed_read_write_in_expression:: MIXED_READ_WRITE_IN_EXPRESSION ) ,
233233 LintId :: of( mut_key:: MUTABLE_KEY_TYPE ) ,
234234 LintId :: of( mut_mutex_lock:: MUT_MUTEX_LOCK ) ,
235235 LintId :: of( mut_reference:: UNNECESSARY_MUT_PASSED ) ,
0 commit comments