File tree 3 files changed +4
-6
lines changed
3 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -348,7 +348,7 @@ pub trait Eq: PartialEq<Self> {
348
348
#[ rustc_builtin_macro]
349
349
#[ stable( feature = "builtin_macro_prelude" , since = "1.38.0" ) ]
350
350
#[ allow_internal_unstable( core_intrinsics, derive_eq, structural_match) ]
351
- #[ cfg_attr ( bootstrap , allow_internal_unstable( coverage_attribute) ) ]
351
+ #[ allow_internal_unstable( coverage_attribute) ]
352
352
pub macro Eq ( $item: item) {
353
353
/* compiler built-in */
354
354
}
Original file line number Diff line number Diff line change 107
107
//
108
108
// Library features:
109
109
// tidy-alphabetical-start
110
- #![ cfg_attr( bootstrap, feature( coverage_attribute) ) ]
111
110
#![ cfg_attr( bootstrap, feature( do_not_recommend) ) ]
112
111
#![ feature( array_ptr_get) ]
113
112
#![ feature( asm_experimental_arch) ]
114
113
#![ feature( const_eval_select) ]
115
114
#![ feature( const_typed_swap) ]
116
115
#![ feature( core_intrinsics) ]
116
+ #![ feature( coverage_attribute) ]
117
117
#![ feature( internal_impls_macro) ]
118
118
#![ feature( ip) ]
119
119
#![ feature( is_ascii_octdigit) ]
Original file line number Diff line number Diff line change @@ -1673,8 +1673,7 @@ pub(crate) mod builtin {
1673
1673
///
1674
1674
/// [the reference]: ../../../reference/attributes/testing.html#the-test-attribute
1675
1675
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
1676
- #[ allow_internal_unstable( test, rustc_attrs) ]
1677
- #[ cfg_attr( bootstrap, allow_internal_unstable( coverage_attribute) ) ]
1676
+ #[ allow_internal_unstable( test, rustc_attrs, coverage_attribute) ]
1678
1677
#[ rustc_builtin_macro]
1679
1678
pub macro test( $item: item) {
1680
1679
/* compiler built-in */
@@ -1687,8 +1686,7 @@ pub(crate) mod builtin {
1687
1686
soft,
1688
1687
reason = "`bench` is a part of custom test frameworks which are unstable"
1689
1688
) ]
1690
- #[ allow_internal_unstable( test, rustc_attrs) ]
1691
- #[ cfg_attr( bootstrap, allow_internal_unstable( coverage_attribute) ) ]
1689
+ #[ allow_internal_unstable( test, rustc_attrs, coverage_attribute) ]
1692
1690
#[ rustc_builtin_macro]
1693
1691
pub macro bench( $item: item) {
1694
1692
/* compiler built-in */
You can’t perform that action at this time.
0 commit comments