diff options
| author | Ulrik Sverdrup <bluss@users.noreply.github.com> | 2016-11-04 00:24:59 +0100 |
|---|---|---|
| committer | Ulrik Sverdrup <bluss@users.noreply.github.com> | 2016-11-04 01:00:55 +0100 |
| commit | f0e6b90790da2203f04fa44ee3ed8f24dcc5f4dc (patch) | |
| tree | a1a62f10a4eca96852b88276aaaf9405643d6d4a /src/libcollections | |
| parent | 5dc9db541e810839f4193fee43c62ebefbe6f260 (diff) | |
| download | rust-f0e6b90790da2203f04fa44ee3ed8f24dcc5f4dc.tar.gz rust-f0e6b90790da2203f04fa44ee3ed8f24dcc5f4dc.zip | |
Link the tracking issue for TrustedLen
Diffstat (limited to 'src/libcollections')
| -rw-r--r-- | src/libcollections/vec.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcollections/vec.rs b/src/libcollections/vec.rs index 16331960cc1..053dcd8272e 100644 --- a/src/libcollections/vec.rs +++ b/src/libcollections/vec.rs @@ -1931,7 +1931,7 @@ impl<T> ExactSizeIterator for IntoIter<T> {} #[unstable(feature = "fused", issue = "35602")] impl<T> FusedIterator for IntoIter<T> {} -#[unstable(feature = "trusted_len", issue = "0")] +#[unstable(feature = "trusted_len", issue = "37572")] unsafe impl<T> TrustedLen for IntoIter<T> {} #[stable(feature = "vec_into_iter_clone", since = "1.8.0")] |
