@@ -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" ) ]
15391539pub 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