@@ -1577,8 +1577,12 @@ pub(crate) mod builtin {
15771577
15781578 /// Unstable implementation detail of the `rustc` compiler, do not use.
15791579 #[ rustc_builtin_macro]
1580- #[ stable( feature = "rust1" , since = "1.0.0" ) ]
1581- #[ allow_internal_unstable( core_intrinsics, libstd_sys_internals, rt) ]
1580+ #[ unstable(
1581+ feature = "rustc_encodable_decodable" ,
1582+ issue = "none" ,
1583+ soft,
1584+ reason = "unstable implementation detail of the `rustc` compiler, do not use"
1585+ ) ]
15821586 #[ deprecated( since = "1.52.0" , note = "rustc-serialize is deprecated and no longer supported" ) ]
15831587 #[ doc( hidden) ] // While technically stable, using it is unstable, and deprecated. Hide it.
15841588 pub macro RustcDecodable ( $item: item) {
@@ -1587,8 +1591,12 @@ pub(crate) mod builtin {
15871591
15881592 /// Unstable implementation detail of the `rustc` compiler, do not use.
15891593 #[ rustc_builtin_macro]
1590- #[ stable( feature = "rust1" , since = "1.0.0" ) ]
1591- #[ allow_internal_unstable( core_intrinsics, rt) ]
1594+ #[ unstable(
1595+ feature = "rustc_encodable_decodable" ,
1596+ issue = "none" ,
1597+ soft,
1598+ reason = "unstable implementation detail of the `rustc` compiler, do not use"
1599+ ) ]
15921600 #[ deprecated( since = "1.52.0" , note = "rustc-serialize is deprecated and no longer supported" ) ]
15931601 #[ doc( hidden) ] // While technically stable, using it is unstable, and deprecated. Hide it.
15941602 pub macro RustcEncodable ( $item: item) {
0 commit comments