Correct a few stability attributes

This commit is contained in:
Oliver Middleton
2018-04-05 00:35:09 +01:00
parent 5758c2dd14
commit 521e41e77d
5 changed files with 10 additions and 8 deletions

View File

@@ -200,7 +200,7 @@ macro_rules! range_trusted_len_impl {
macro_rules! range_incl_trusted_len_impl {
($($t:ty)*) => ($(
#[stable(feature = "inclusive_range", since = "1.26.0")]
#[unstable(feature = "trusted_len", issue = "37572")]
unsafe impl TrustedLen for ops::RangeInclusive<$t> { }
)*)
}