Skip to content

Commit 465bf5f

Browse files
authored
Unrolled build for #142154
Rollup merge of #142154 - RalfJung:no-more-cfg-bootstrap, r=oli-obk get rid of spurious cfg(bootstrap) r? ```@oli-obk```
2 parents cdd545b + 6a6c595 commit 465bf5f

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

library/core/src/iter/sources/generator.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@
99
///
1010
/// ```
1111
/// #![feature(iter_macro, coroutines)]
12-
/// # #[cfg(not(bootstrap))]
13-
/// # {
1412
///
1513
/// let it = std::iter::iter!{|| {
1614
/// yield 1;
@@ -19,7 +17,6 @@
1917
/// } }();
2018
/// let v: Vec<_> = it.collect();
2119
/// assert_eq!(v, [1, 2, 3]);
22-
/// # }
2320
/// ```
2421
#[unstable(feature = "iter_macro", issue = "none", reason = "generators are unstable")]
2522
#[allow_internal_unstable(coroutines, iter_from_coroutine)]

0 commit comments

Comments
 (0)