Skip to content

Commit 55b208f

Browse files
committed
experiment
1 parent 6ddaadd commit 55b208f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

library/core/src/array/mod.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,7 @@ impl<T: Ord, const N: usize> Ord for [T; N] {
354354
}
355355

356356
/// This module implements `Default` for arrays.
357-
#[cfg(not(bootstrap))]
357+
//#[cfg(not(bootstrap))]
358358
mod default_impls {
359359
// A trait implemented by all arrays which are either empty or contain a type implementing `Default`.
360360
#[unstable(
@@ -405,7 +405,7 @@ mod default_impls {
405405
}
406406
}
407407

408-
#[cfg(bootstrap)]
408+
/*#[cfg(bootstrap)]
409409
mod default_impls {
410410
macro_rules! array_impl_default {
411411
{$n:expr, $t:ident $($ts:ident)*} => {
@@ -426,7 +426,7 @@ mod default_impls {
426426
}
427427
428428
array_impl_default! {32, T T T T T T T T T T T T T T T T T T T T T T T T T T T T T T T T}
429-
}
429+
}*/
430430

431431
#[lang = "array"]
432432
impl<T, const N: usize> [T; N] {

0 commit comments

Comments
 (0)