@@ -457,37 +457,50 @@ pub fn register_builtins(store: &mut lint::LintStore, sess: Option<&Session>) {
457457 store. register_removed ( "transmute_from_fn_item_types" ,
458458 "always cast functions before transmuting them" ) ;
459459 store. register_removed ( "hr_lifetime_in_assoc_type" ,
460- "converted into hard error, see https://github.com/rust-lang/rust/issues/33685" ) ;
460+ "converted into hard error, \
461+ see issue #33685 <https://github.com/rust-lang/rust/issues/33685>") ;
461462 store. register_removed ( "inaccessible_extern_crate" ,
462- "converted into hard error, see https://github.com/rust-lang/rust/issues/36886" ) ;
463+ "converted into hard error, \
464+ see issue #36886 <https://github.com/rust-lang/rust/issues/36886>") ;
463465 store. register_removed ( "super_or_self_in_global_path" ,
464- "converted into hard error, see https://github.com/rust-lang/rust/issues/36888" ) ;
466+ "converted into hard error, \
467+ see issue #36888 <https://github.com/rust-lang/rust/issues/36888>") ;
465468 store. register_removed ( "overlapping_inherent_impls" ,
466- "converted into hard error, see https://github.com/rust-lang/rust/issues/36889" ) ;
469+ "converted into hard error, \
470+ see issue #36889 <https://github.com/rust-lang/rust/issues/36889>") ;
467471 store. register_removed ( "illegal_floating_point_constant_pattern" ,
468- "converted into hard error, see https://github.com/rust-lang/rust/issues/36890" ) ;
472+ "converted into hard error, \
473+ see issue #36890 <https://github.com/rust-lang/rust/issues/36890>") ;
469474 store. register_removed ( "illegal_struct_or_enum_constant_pattern" ,
470- "converted into hard error, see https://github.com/rust-lang/rust/issues/36891" ) ;
475+ "converted into hard error, \
476+ see issue #36891 <https://github.com/rust-lang/rust/issues/36891>") ;
471477 store. register_removed ( "lifetime_underscore" ,
472- "converted into hard error, see https://github.com/rust-lang/rust/issues/36892" ) ;
478+ "converted into hard error, \
479+ see issue #36892 <https://github.com/rust-lang/rust/issues/36892>") ;
473480 store. register_removed ( "extra_requirement_in_impl" ,
474- "converted into hard error, see https://github.com/rust-lang/rust/issues/37166" ) ;
481+ "converted into hard error, \
482+ see issue #37166 <https://github.com/rust-lang/rust/issues/37166>") ;
475483 store. register_removed ( "legacy_imports" ,
476- "converted into hard error, see https://github.com/rust-lang/rust/issues/38260" ) ;
484+ "converted into hard error, \
485+ see issue #38260 <https://github.com/rust-lang/rust/issues/38260>") ;
477486 store. register_removed ( "coerce_never" ,
478- "converted into hard error, see https://github.com/rust-lang/rust/issues/48950" ) ;
487+ "converted into hard error, \
488+ see issue #48950 <https://github.com/rust-lang/rust/issues/48950>") ;
479489 store. register_removed ( "resolve_trait_on_defaulted_unit" ,
480- "converted into hard error, see https://github.com/rust-lang/rust/issues/48950" ) ;
490+ "converted into hard error, \
491+ see issue #48950 <https://github.com/rust-lang/rust/issues/48950>") ;
481492 store. register_removed ( "private_no_mangle_fns" ,
482493 "no longer a warning, `#[no_mangle]` functions always exported" ) ;
483494 store. register_removed ( "private_no_mangle_statics" ,
484495 "no longer a warning, `#[no_mangle]` statics always exported" ) ;
485496 store. register_removed ( "bad_repr" ,
486497 "replaced with a generic attribute input check" ) ;
487498 store. register_removed ( "duplicate_matcher_binding_name" ,
488- "converted into hard error, see https://github.com/rust-lang/rust/issues/57742" ) ;
499+ "converted into hard error, \
500+ see issue #57742 <https://github.com/rust-lang/rust/issues/57742>") ;
489501 store. register_removed ( "incoherent_fundamental_impls" ,
490- "converted into hard error, see https://github.com/rust-lang/rust/issues/46205" ) ;
502+ "converted into hard error, \
503+ see issue #46205 <https://github.com/rust-lang/rust/issues/46205>") ;
491504}
492505
493506pub fn register_internals ( store : & mut lint:: LintStore , sess : Option < & Session > ) {
0 commit comments