@@ -487,7 +487,6 @@ declare_features! (
487487
488488 // RFC 2070: #[panic_implementation] / #[panic_handler]
489489 ( active, panic_implementation, "1.28.0" , Some ( 44489 ) , None ) ,
490- ( active, panic_handler, "1.30.0" , Some ( 44489 ) , None ) ,
491490
492491 // #[doc(keyword = "...")]
493492 ( active, doc_keyword, "1.28.0" , Some ( 51315 ) , None ) ,
@@ -674,6 +673,7 @@ declare_features! (
674673 ( accepted, proc_macro_path_invoc, "1.30.0" , Some ( 38356 ) , None ) ,
675674 // Allows all literals in attribute lists and values of key-value pairs.
676675 ( accepted, attr_literals, "1.30.0" , Some ( 34981 ) , None ) ,
676+ ( accepted, panic_handler, "1.30.0" , Some ( 44489 ) , None ) ,
677677) ;
678678
679679// If you change this, please modify src/doc/unstable-book as well. You must
@@ -1143,10 +1143,7 @@ pub const BUILTIN_ATTRIBUTES: &'static [(&'static str, AttributeType, AttributeG
11431143 cfg_fn ! ( panic_implementation) ) ) ,
11441144
11451145 // RFC 2070
1146- ( "panic_handler" , Normal , Gated ( Stability :: Unstable ,
1147- "panic_handler" ,
1148- "#[panic_handler] is an unstable feature" ,
1149- cfg_fn ! ( panic_handler) ) ) ,
1146+ ( "panic_handler" , Normal , Ungated ) ,
11501147
11511148 ( "alloc_error_handler" , Normal , Gated ( Stability :: Unstable ,
11521149 "alloc_error_handler" ,
0 commit comments