Skip to content

Commit f6a90ca

Browse files
committed
Ignore array IntoIterator tests in bootstrap
1 parent 2a97c69 commit f6a90ca

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

library/std/src/primitive_docs.rs

+4-2
Original file line numberDiff line numberDiff line change
@@ -517,7 +517,8 @@ mod prim_pointer {}
517517
///
518518
/// # Examples
519519
///
520-
/// ```
520+
#[cfg_attr(bootstrap, doc = "```ignore")]
521+
#[cfg_attr(not(bootstrap), doc = "```")]
521522
/// let mut array: [i32; 3] = [0; 3];
522523
///
523524
/// array[1] = 1;
@@ -555,7 +556,8 @@ mod prim_pointer {}
555556
/// `array.into_iter()` auto-referenced into a slice iterator. That behavior is preserved in the
556557
/// 2015 and 2018 editions of Rust for compatability, ignoring `IntoIterator` by value.
557558
///
558-
/// ```rust,edition2018
559+
#[cfg_attr(bootstrap, doc = "```rust,edition2018,ignore")]
560+
#[cfg_attr(not(bootstrap), doc = "```rust,edition2018")]
559561
/// # #![allow(array_into_iter)] // override our `deny(warnings)`
560562
/// let array: [i32; 3] = [0; 3];
561563
///

0 commit comments

Comments
 (0)