@@ -198,6 +198,7 @@ mod excessive_bools;
198198mod exit;
199199mod explicit_write;
200200mod fallible_impl_from;
201+ mod field_reassign_with_default;
201202mod float_equality_without_abs;
202203mod float_literal;
203204mod floating_point_arithmetic;
@@ -569,6 +570,7 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
569570 & exit:: EXIT ,
570571 & explicit_write:: EXPLICIT_WRITE ,
571572 & fallible_impl_from:: FALLIBLE_IMPL_FROM ,
573+ & field_reassign_with_default:: FIELD_REASSIGN_WITH_DEFAULT ,
572574 & float_equality_without_abs:: FLOAT_EQUALITY_WITHOUT_ABS ,
573575 & float_literal:: EXCESSIVE_PRECISION ,
574576 & float_literal:: LOSSY_FLOAT_LITERAL ,
@@ -1206,6 +1208,7 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
12061208 LintId :: of( & eta_reduction:: REDUNDANT_CLOSURE_FOR_METHOD_CALLS ) ,
12071209 LintId :: of( & excessive_bools:: FN_PARAMS_EXCESSIVE_BOOLS ) ,
12081210 LintId :: of( & excessive_bools:: STRUCT_EXCESSIVE_BOOLS ) ,
1211+ LintId :: of( & field_reassign_with_default:: FIELD_REASSIGN_WITH_DEFAULT ) ,
12091212 LintId :: of( & functions:: MUST_USE_CANDIDATE ) ,
12101213 LintId :: of( & functions:: TOO_MANY_LINES ) ,
12111214 LintId :: of( & if_not_else:: IF_NOT_ELSE ) ,
0 commit comments