diff options
| author | bors <bors@rust-lang.org> | 2018-04-09 03:32:32 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2018-04-09 03:32:32 +0000 |
| commit | 8ae79efce3e43eadecd032cf38b2372b4cba7b62 (patch) | |
| tree | 3cc57eb3f99e83e26ab489cd7e1e6bc295891bfb /src/libcore/iter | |
| parent | 292685e8965eb5dcd52637e93e93ebfd67b86615 (diff) | |
| parent | 521e41e77d0c9213ff3ed3f2a5e863b600ce2c3a (diff) | |
| download | rust-8ae79efce3e43eadecd032cf38b2372b4cba7b62.tar.gz rust-8ae79efce3e43eadecd032cf38b2372b4cba7b62.zip | |
Auto merge of #49673 - ollie27:stab, r=sfackler
Correct a few stability attributes * `const_indexing` language feature was stabilized in 1.26.0 by #46882 * `Display` impls for `PanicInfo` and `Location` were stabilized in 1.26.0 by #47687 * `TrustedLen` is still unstable so its impls should be as well even though `RangeInclusive` was stabilized by #47813 * `!Send` and `!Sync` for `Args` and `ArgsOs` were stabilized in 1.26.0 by #48005 * `EscapeDefault` has been stable since 1.0.0 so should continue to show that even though it was moved to core in #48735 This could be backported to beta like #49612
Diffstat (limited to 'src/libcore/iter')
| -rw-r--r-- | src/libcore/iter/range.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/iter/range.rs b/src/libcore/iter/range.rs index 5d57207763e..5896322f111 100644 --- a/src/libcore/iter/range.rs +++ b/src/libcore/iter/range.rs @@ -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> { } )*) } |
