@@ -200,7 +200,7 @@ mod escape;
200200mod eta_reduction;
201201mod eval_order_dependence;
202202mod excessive_bools;
203- mod exhaustive_enums ;
203+ mod exhaustive_items ;
204204mod exit;
205205mod explicit_write;
206206mod fallible_impl_from;
@@ -612,7 +612,7 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
612612 & eval_order_dependence:: EVAL_ORDER_DEPENDENCE ,
613613 & excessive_bools:: FN_PARAMS_EXCESSIVE_BOOLS ,
614614 & excessive_bools:: STRUCT_EXCESSIVE_BOOLS ,
615- & exhaustive_enums :: EXHAUSTIVE_ENUMS ,
615+ & exhaustive_items :: EXHAUSTIVE_ENUMS ,
616616 & exit:: EXIT ,
617617 & explicit_write:: EXPLICIT_WRITE ,
618618 & fallible_impl_from:: FALLIBLE_IMPL_FROM ,
@@ -1098,7 +1098,7 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
10981098 store. register_late_pass ( || box eval_order_dependence:: EvalOrderDependence ) ;
10991099 store. register_late_pass ( || box missing_doc:: MissingDoc :: new ( ) ) ;
11001100 store. register_late_pass ( || box missing_inline:: MissingInline ) ;
1101- store. register_late_pass ( move || box exhaustive_enums :: ExhaustiveEnums ) ;
1101+ store. register_late_pass ( move || box exhaustive_items :: ExhaustiveItems ) ;
11021102 store. register_late_pass ( || box if_let_some_result:: OkIfLet ) ;
11031103 store. register_late_pass ( || box partialeq_ne_impl:: PartialEqNeImpl ) ;
11041104 store. register_late_pass ( || box unused_io_amount:: UnusedIoAmount ) ;
@@ -1249,7 +1249,7 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
12491249 LintId :: of( & create_dir:: CREATE_DIR ) ,
12501250 LintId :: of( & dbg_macro:: DBG_MACRO ) ,
12511251 LintId :: of( & else_if_without_else:: ELSE_IF_WITHOUT_ELSE ) ,
1252- LintId :: of( & exhaustive_enums :: EXHAUSTIVE_ENUMS ) ,
1252+ LintId :: of( & exhaustive_items :: EXHAUSTIVE_ENUMS ) ,
12531253 LintId :: of( & exit:: EXIT ) ,
12541254 LintId :: of( & float_literal:: LOSSY_FLOAT_LITERAL ) ,
12551255 LintId :: of( & implicit_return:: IMPLICIT_RETURN ) ,
0 commit comments