diff options
| author | Scott McMurray <scottmcm@users.noreply.github.com> | 2017-05-30 08:40:50 -0700 |
|---|---|---|
| committer | Scott McMurray <scottmcm@users.noreply.github.com> | 2017-05-31 22:35:35 -0700 |
| commit | 15dff84dc3a640be4b6e49f45614c7d1806c8f56 (patch) | |
| tree | d5774e0009e23cc8bd1046c2b5f6e447d5973e6b /src/libcore/tests | |
| parent | 1723e063c9d29bbcfe7622789869818cb635bdeb (diff) | |
| download | rust-15dff84dc3a640be4b6e49f45614c7d1806c8f56.tar.gz rust-15dff84dc3a640be4b6e49f45614c7d1806c8f56.zip | |
Avoid range::step_by in another test
Diffstat (limited to 'src/libcore/tests')
| -rw-r--r-- | src/libcore/tests/iter.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libcore/tests/iter.rs b/src/libcore/tests/iter.rs index f53365bfb04..4f9951cd153 100644 --- a/src/libcore/tests/iter.rs +++ b/src/libcore/tests/iter.rs @@ -12,8 +12,8 @@ use core::iter::*; use core::{i8, i16, isize}; use core::usize; -// This is here to simplify calling Iterator::step_by. Remove once -// Range::step_by is completely gone (not just deprecated). +// FIXME #27741: This is here to simplify calling Iterator::step_by. Remove +// once Range::step_by is completely gone (not just deprecated). trait IterEx: Sized { fn iter_step_by(self, n: usize) -> StepBy<Self>; } |
