@@ -1183,6 +1183,7 @@ pub fn register_plugins(store: &mut lint::LintStore, sess: &Session, conf: &Conf
11831183 LintId :: of( & matches:: SINGLE_MATCH ) ,
11841184 LintId :: of( & mem_discriminant:: MEM_DISCRIMINANT_NON_ENUM ) ,
11851185 LintId :: of( & mem_replace:: MEM_REPLACE_OPTION_WITH_NONE ) ,
1186+ LintId :: of( & mem_replace:: MEM_REPLACE_WITH_DEFAULT ) ,
11861187 LintId :: of( & mem_replace:: MEM_REPLACE_WITH_UNINIT ) ,
11871188 LintId :: of( & methods:: CHARS_LAST_CMP ) ,
11881189 LintId :: of( & methods:: CHARS_NEXT_CMP ) ,
@@ -1370,6 +1371,7 @@ pub fn register_plugins(store: &mut lint::LintStore, sess: &Session, conf: &Conf
13701371 LintId :: of( & matches:: MATCH_WILD_ERR_ARM ) ,
13711372 LintId :: of( & matches:: SINGLE_MATCH ) ,
13721373 LintId :: of( & mem_replace:: MEM_REPLACE_OPTION_WITH_NONE ) ,
1374+ LintId :: of( & mem_replace:: MEM_REPLACE_WITH_DEFAULT ) ,
13731375 LintId :: of( & methods:: CHARS_LAST_CMP ) ,
13741376 LintId :: of( & methods:: INTO_ITER_ON_REF ) ,
13751377 LintId :: of( & methods:: ITER_CLONED_COLLECT ) ,
@@ -1595,7 +1597,6 @@ pub fn register_plugins(store: &mut lint::LintStore, sess: &Session, conf: &Conf
15951597 store. register_group ( true , "clippy::nursery" , Some ( "clippy_nursery" ) , vec ! [
15961598 LintId :: of( & attrs:: EMPTY_LINE_AFTER_OUTER_ATTR ) ,
15971599 LintId :: of( & fallible_impl_from:: FALLIBLE_IMPL_FROM ) ,
1598- LintId :: of( & mem_replace:: MEM_REPLACE_WITH_DEFAULT ) ,
15991600 LintId :: of( & missing_const_for_fn:: MISSING_CONST_FOR_FN ) ,
16001601 LintId :: of( & mul_add:: MANUAL_MUL_ADD ) ,
16011602 LintId :: of( & mutex_atomic:: MUTEX_INTEGER ) ,
0 commit comments