Skip to content

Commit

Permalink
Remove arrays/IntoIterator message from Iterator trait.
Browse files Browse the repository at this point in the history
  • Loading branch information
m-ou-se committed May 25, 2021
1 parent cdbe288 commit 8d954fa
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions library/core/src/iter/traits/iterator.rs
Expand Up @@ -79,11 +79,6 @@ fn _assert_is_object_safe(_: &dyn Iterator<Item = ()>) {}
_Self = "std::string::String",
label = "`{Self}` is not an iterator; try calling `.chars()` or `.bytes()`"
),
on(
_Self = "[]",
label = "arrays do not yet implement `IntoIterator`; try using `std::array::IntoIter::new(arr)`",
note = "see <https://github.com/rust-lang/rust/pull/65819> for more details"
),
on(
_Self = "{integral}",
note = "if you want to iterate between `start` until a value `end`, use the exclusive range \
Expand Down

0 comments on commit 8d954fa

Please sign in to comment.