Skip to content

Commit 003120a

Browse files
committed
add more unstable annotations
1 parent 54cb2d9 commit 003120a

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

src/libcore/ops.rs

+15
Original file line numberDiff line numberDiff line change
@@ -1538,15 +1538,30 @@ impl<Idx: fmt::Debug> fmt::Debug for RangeTo<Idx> {
15381538
#[unstable(feature = "inclusive_range", reason = "recently added, follows RFC", issue = "28237")]
15391539
pub enum RangeInclusive<Idx> {
15401540
/// Empty range (iteration has finished)
1541+
#[unstable(feature = "inclusive_range",
1542+
reason = "recently added, follows RFC",
1543+
issue = "28237")]
15411544
Empty {
15421545
/// The point at which iteration finished
1546+
#[unstable(feature = "inclusive_range",
1547+
reason = "recently added, follows RFC",
1548+
issue = "28237")]
15431549
at: Idx
15441550
},
15451551
/// Non-empty range (iteration will yield value(s))
1552+
#[unstable(feature = "inclusive_range",
1553+
reason = "recently added, follows RFC",
1554+
issue = "28237")]
15461555
NonEmpty {
15471556
/// The lower bound of the range (inclusive).
1557+
#[unstable(feature = "inclusive_range",
1558+
reason = "recently added, follows RFC",
1559+
issue = "28237")]
15481560
start: Idx,
15491561
/// The upper bound of the range (inclusive).
1562+
#[unstable(feature = "inclusive_range",
1563+
reason = "recently added, follows RFC",
1564+
issue = "28237")]
15501565
end: Idx,
15511566
},
15521567
}

0 commit comments

Comments
 (0)