@@ -237,7 +237,6 @@ mod hack {
237
237
}
238
238
}
239
239
240
- #[ cfg_attr( bootstrap, lang = "slice_alloc" ) ]
241
240
#[ cfg( not( test) ) ]
242
241
impl < T > [ T ] {
243
242
/// Sorts the slice.
@@ -267,7 +266,7 @@ impl<T> [T] {
267
266
/// assert!(v == [-5, -3, 1, 2, 4]);
268
267
/// ```
269
268
#[ cfg( not( no_global_oom_handling) ) ]
270
- #[ cfg_attr ( not ( bootstrap ) , rustc_allow_incoherent_impl) ]
269
+ #[ rustc_allow_incoherent_impl]
271
270
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
272
271
#[ inline]
273
272
pub fn sort ( & mut self )
@@ -323,7 +322,7 @@ impl<T> [T] {
323
322
/// assert!(v == [5, 4, 3, 2, 1]);
324
323
/// ```
325
324
#[ cfg( not( no_global_oom_handling) ) ]
326
- #[ cfg_attr ( not ( bootstrap ) , rustc_allow_incoherent_impl) ]
325
+ #[ rustc_allow_incoherent_impl]
327
326
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
328
327
#[ inline]
329
328
pub fn sort_by < F > ( & mut self , mut compare : F )
@@ -365,7 +364,7 @@ impl<T> [T] {
365
364
/// assert!(v == [1, 2, -3, 4, -5]);
366
365
/// ```
367
366
#[ cfg( not( no_global_oom_handling) ) ]
368
- #[ cfg_attr ( not ( bootstrap ) , rustc_allow_incoherent_impl) ]
367
+ #[ rustc_allow_incoherent_impl]
369
368
#[ stable( feature = "slice_sort_by_key" , since = "1.7.0" ) ]
370
369
#[ inline]
371
370
pub fn sort_by_key < K , F > ( & mut self , mut f : F )
@@ -412,7 +411,7 @@ impl<T> [T] {
412
411
///
413
412
/// [pdqsort]: https://github.com/orlp/pdqsort
414
413
#[ cfg( not( no_global_oom_handling) ) ]
415
- #[ cfg_attr ( not ( bootstrap ) , rustc_allow_incoherent_impl) ]
414
+ #[ rustc_allow_incoherent_impl]
416
415
#[ stable( feature = "slice_sort_by_cached_key" , since = "1.34.0" ) ]
417
416
#[ inline]
418
417
pub fn sort_by_cached_key < K , F > ( & mut self , f : F )
@@ -471,7 +470,7 @@ impl<T> [T] {
471
470
/// // Here, `s` and `x` can be modified independently.
472
471
/// ```
473
472
#[ cfg( not( no_global_oom_handling) ) ]
474
- #[ cfg_attr ( not ( bootstrap ) , rustc_allow_incoherent_impl) ]
473
+ #[ rustc_allow_incoherent_impl]
475
474
#[ rustc_conversion_suggestion]
476
475
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
477
476
#[ inline]
@@ -496,7 +495,7 @@ impl<T> [T] {
496
495
/// // Here, `s` and `x` can be modified independently.
497
496
/// ```
498
497
#[ cfg( not( no_global_oom_handling) ) ]
499
- #[ cfg_attr ( not ( bootstrap ) , rustc_allow_incoherent_impl) ]
498
+ #[ rustc_allow_incoherent_impl]
500
499
#[ inline]
501
500
#[ unstable( feature = "allocator_api" , issue = "32838" ) ]
502
501
pub fn to_vec_in < A : Allocator > ( & self , alloc : A ) -> Vec < T , A >
@@ -521,7 +520,7 @@ impl<T> [T] {
521
520
///
522
521
/// assert_eq!(x, vec![10, 40, 30]);
523
522
/// ```
524
- #[ cfg_attr ( not ( bootstrap ) , rustc_allow_incoherent_impl) ]
523
+ #[ rustc_allow_incoherent_impl]
525
524
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
526
525
#[ inline]
527
526
pub fn into_vec < A : Allocator > ( self : Box < Self , A > ) -> Vec < T , A > {
@@ -549,7 +548,7 @@ impl<T> [T] {
549
548
/// // this will panic at runtime
550
549
/// b"0123456789abcdef".repeat(usize::MAX);
551
550
/// ```
552
- #[ cfg_attr ( not ( bootstrap ) , rustc_allow_incoherent_impl) ]
551
+ #[ rustc_allow_incoherent_impl]
553
552
#[ cfg( not( no_global_oom_handling) ) ]
554
553
#[ stable( feature = "repeat_generic_slice" , since = "1.40.0" ) ]
555
554
pub fn repeat ( & self , n : usize ) -> Vec < T >
@@ -618,7 +617,7 @@ impl<T> [T] {
618
617
/// assert_eq!(["hello", "world"].concat(), "helloworld");
619
618
/// assert_eq!([[1, 2], [3, 4]].concat(), [1, 2, 3, 4]);
620
619
/// ```
621
- #[ cfg_attr ( not ( bootstrap ) , rustc_allow_incoherent_impl) ]
620
+ #[ rustc_allow_incoherent_impl]
622
621
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
623
622
pub fn concat < Item : ?Sized > ( & self ) -> <Self as Concat < Item > >:: Output
624
623
where
@@ -637,7 +636,7 @@ impl<T> [T] {
637
636
/// assert_eq!([[1, 2], [3, 4]].join(&0), [1, 2, 0, 3, 4]);
638
637
/// assert_eq!([[1, 2], [3, 4]].join(&[0, 0][..]), [1, 2, 0, 0, 3, 4]);
639
638
/// ```
640
- #[ cfg_attr ( not ( bootstrap ) , rustc_allow_incoherent_impl) ]
639
+ #[ rustc_allow_incoherent_impl]
641
640
#[ stable( feature = "rename_connect_to_join" , since = "1.3.0" ) ]
642
641
pub fn join < Separator > ( & self , sep : Separator ) -> <Self as Join < Separator > >:: Output
643
642
where
@@ -656,7 +655,7 @@ impl<T> [T] {
656
655
/// assert_eq!(["hello", "world"].connect(" "), "hello world");
657
656
/// assert_eq!([[1, 2], [3, 4]].connect(&0), [1, 2, 0, 3, 4]);
658
657
/// ```
659
- #[ cfg_attr ( not ( bootstrap ) , rustc_allow_incoherent_impl) ]
658
+ #[ rustc_allow_incoherent_impl]
660
659
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
661
660
#[ rustc_deprecated( since = "1.3.0" , reason = "renamed to join" ) ]
662
661
pub fn connect < Separator > ( & self , sep : Separator ) -> <Self as Join < Separator > >:: Output
@@ -667,7 +666,6 @@ impl<T> [T] {
667
666
}
668
667
}
669
668
670
- #[ cfg_attr( bootstrap, lang = "slice_u8_alloc" ) ]
671
669
#[ cfg( not( test) ) ]
672
670
impl [ u8 ] {
673
671
/// Returns a vector containing a copy of this slice where each byte
@@ -680,7 +678,7 @@ impl [u8] {
680
678
///
681
679
/// [`make_ascii_uppercase`]: slice::make_ascii_uppercase
682
680
#[ cfg( not( no_global_oom_handling) ) ]
683
- #[ cfg_attr ( not ( bootstrap ) , rustc_allow_incoherent_impl) ]
681
+ #[ rustc_allow_incoherent_impl]
684
682
#[ must_use = "this returns the uppercase bytes as a new Vec, \
685
683
without modifying the original"]
686
684
#[ stable( feature = "ascii_methods_on_intrinsics" , since = "1.23.0" ) ]
@@ -701,7 +699,7 @@ impl [u8] {
701
699
///
702
700
/// [`make_ascii_lowercase`]: slice::make_ascii_lowercase
703
701
#[ cfg( not( no_global_oom_handling) ) ]
704
- #[ cfg_attr ( not ( bootstrap ) , rustc_allow_incoherent_impl) ]
702
+ #[ rustc_allow_incoherent_impl]
705
703
#[ must_use = "this returns the lowercase bytes as a new Vec, \
706
704
without modifying the original"]
707
705
#[ stable( feature = "ascii_methods_on_intrinsics" , since = "1.23.0" ) ]
0 commit comments