about summary refs log tree commit diff
path: root/src/libcore/tests
diff options
context:
space:
mode:
authorScott McMurray <scottmcm@users.noreply.github.com>2017-05-30 08:40:50 -0700
committerScott McMurray <scottmcm@users.noreply.github.com>2017-05-31 22:35:35 -0700
commit15dff84dc3a640be4b6e49f45614c7d1806c8f56 (patch)
treed5774e0009e23cc8bd1046c2b5f6e447d5973e6b /src/libcore/tests
parent1723e063c9d29bbcfe7622789869818cb635bdeb (diff)
downloadrust-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.rs4
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>;
 }