@@ -177,7 +177,7 @@ pub mod non_expressive_names;
177
177
pub mod ok_if_let;
178
178
pub mod open_options;
179
179
pub mod overflow_check_conditional;
180
- pub mod panic ;
180
+ pub mod panic_unimplemented ;
181
181
pub mod partialeq_ne_impl;
182
182
pub mod precedence;
183
183
pub mod ptr;
@@ -352,7 +352,7 @@ pub fn register_plugins(reg: &mut rustc_plugin::Registry) {
352
352
reg. register_late_lint_pass ( box escape:: Pass { too_large_for_stack : conf. too_large_for_stack } ) ;
353
353
reg. register_early_lint_pass ( box misc_early:: MiscEarly ) ;
354
354
reg. register_late_lint_pass ( box array_indexing:: ArrayIndexing ) ;
355
- reg. register_late_lint_pass ( box panic :: Pass ) ;
355
+ reg. register_late_lint_pass ( box panic_unimplemented :: Pass ) ;
356
356
reg. register_late_lint_pass ( box strings:: StringLitAsBytes ) ;
357
357
reg. register_late_lint_pass ( box derive:: Derive ) ;
358
358
reg. register_late_lint_pass ( box types:: CharLitAsU8 ) ;
@@ -626,8 +626,8 @@ pub fn register_plugins(reg: &mut rustc_plugin::Registry) {
626
626
ok_if_let:: IF_LET_SOME_RESULT ,
627
627
open_options:: NONSENSICAL_OPEN_OPTIONS ,
628
628
overflow_check_conditional:: OVERFLOW_CHECK_CONDITIONAL ,
629
- panic :: PANIC_PARAMS ,
630
- panic :: UNIMPLEMENTED ,
629
+ panic_unimplemented :: PANIC_PARAMS ,
630
+ panic_unimplemented :: UNIMPLEMENTED ,
631
631
partialeq_ne_impl:: PARTIALEQ_NE_IMPL ,
632
632
precedence:: PRECEDENCE ,
633
633
ptr:: CMP_NULL ,
@@ -749,8 +749,8 @@ pub fn register_plugins(reg: &mut rustc_plugin::Registry) {
749
749
non_expressive_names:: JUST_UNDERSCORES_AND_DIGITS ,
750
750
non_expressive_names:: MANY_SINGLE_CHAR_NAMES ,
751
751
ok_if_let:: IF_LET_SOME_RESULT ,
752
- panic :: PANIC_PARAMS ,
753
- panic :: UNIMPLEMENTED ,
752
+ panic_unimplemented :: PANIC_PARAMS ,
753
+ panic_unimplemented :: UNIMPLEMENTED ,
754
754
ptr:: CMP_NULL ,
755
755
ptr:: PTR_ARG ,
756
756
question_mark:: QUESTION_MARK ,
0 commit comments