@@ -866,7 +866,6 @@ pub(crate) mod builtin {
866
866
language use and is subject to change"
867
867
) ]
868
868
#[ allow_internal_unstable( fmt_internals) ]
869
- #[ doc( hidden) ]
870
869
#[ rustc_builtin_macro]
871
870
#[ macro_export]
872
871
macro_rules! format_args_nl {
@@ -1428,13 +1427,21 @@ pub(crate) mod builtin {
1428
1427
}
1429
1428
1430
1429
/// Attribute macro used to apply derive macros.
1430
+ ///
1431
+ /// See [the reference] for more info.
1432
+ ///
1433
+ /// [the reference]: ../../../reference/attributes/derive.html
1431
1434
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
1432
1435
#[ rustc_builtin_macro]
1433
1436
pub macro derive( $item: item) {
1434
1437
/* compiler built-in */
1435
1438
}
1436
1439
1437
1440
/// Attribute macro applied to a function to turn it into a unit test.
1441
+ ///
1442
+ /// See [the reference] for more info.
1443
+ ///
1444
+ /// [the reference]: ../../../reference/attributes/testing.html#the-test-attribute
1438
1445
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
1439
1446
#[ allow_internal_unstable( test, rustc_attrs) ]
1440
1447
#[ rustc_builtin_macro]
@@ -1469,7 +1476,7 @@ pub(crate) mod builtin {
1469
1476
1470
1477
/// Attribute macro applied to a static to register it as a global allocator.
1471
1478
///
1472
- /// See also [`std::alloc::GlobalAlloc`](../std/alloc/trait.GlobalAlloc.html).
1479
+ /// See also [`std::alloc::GlobalAlloc`](../../../ std/alloc/trait.GlobalAlloc.html).
1473
1480
#[ stable( feature = "global_allocator" , since = "1.28.0" ) ]
1474
1481
#[ allow_internal_unstable( rustc_attrs) ]
1475
1482
#[ rustc_builtin_macro]
@@ -1507,6 +1514,7 @@ pub(crate) mod builtin {
1507
1514
since = "1.52.0" ,
1508
1515
reason = "rustc-serialize is deprecated and no longer supported"
1509
1516
) ]
1517
+ #[ doc( hidden) ] // While technically stable, using it is unstable, and deprecated. Hide it.
1510
1518
pub macro RustcDecodable ( $item: item) {
1511
1519
/* compiler built-in */
1512
1520
}
@@ -1519,6 +1527,7 @@ pub(crate) mod builtin {
1519
1527
since = "1.52.0" ,
1520
1528
reason = "rustc-serialize is deprecated and no longer supported"
1521
1529
) ]
1530
+ #[ doc( hidden) ] // While technically stable, using it is unstable, and deprecated. Hide it.
1522
1531
pub macro RustcEncodable ( $item: item) {
1523
1532
/* compiler built-in */
1524
1533
}
0 commit comments