@@ -362,9 +362,6 @@ declare_features! (
362
362
// rustc internal
363
363
( active, abi_thiscall, "1.19.0" , None ) ,
364
364
365
- // Allows a test to fail without failing the whole suite
366
- ( active, allow_fail, "1.19.0" , Some ( 42219 ) ) ,
367
-
368
365
// Allows unsized tuple coercion.
369
366
( active, unsized_tuple_coercion, "1.20.0" , Some ( 42877 ) ) ,
370
367
@@ -542,6 +539,8 @@ declare_features! (
542
539
// Allows the sysV64 ABI to be specified on all platforms
543
540
// instead of just the platforms on which it is the C ABI
544
541
( accepted, abi_sysv64, "1.24.0" , Some ( 36167 ) ) ,
542
+ // Allows a test to fail without failing the whole suite
543
+ ( accepted, allow_fail, "1.25.0" , Some ( 42219 ) ) ,
545
544
) ;
546
545
547
546
// If you change this, please modify src/doc/unstable-book as well. You must
@@ -958,10 +957,7 @@ pub const BUILTIN_ATTRIBUTES: &'static [(&'static str, AttributeType, AttributeG
958
957
"used internally by rustc" ,
959
958
cfg_fn ! ( rustc_attrs) ) ) ,
960
959
961
- ( "allow_fail" , Normal , Gated ( Stability :: Unstable ,
962
- "allow_fail" ,
963
- "allow_fail attribute is currently unstable" ,
964
- cfg_fn ! ( allow_fail) ) ) ,
960
+ ( "allow_fail" , Normal , Ungated ) ,
965
961
966
962
( "rustc_std_internal_symbol" , Whitelisted , Gated ( Stability :: Unstable ,
967
963
"rustc_attrs" ,
0 commit comments