We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b759b22 commit 40c9bc0Copy full SHA for 40c9bc0
src/test/ui/methods/issues/issue-90315.rs
@@ -0,0 +1,7 @@
1
+fn main() {
2
+ let arr = &[0,1,2,3];
3
+ for _i in 0..arr.len().rev() { //~ERROR not an iterator
4
+ // The above error used to say “the method `rev` exists for type `usize`”.
5
+ // This regression test ensures it doesn't say that any more.
6
+ }
7
+}
src/test/ui/methods/issues/issue-90315.stderr
@@ -0,0 +1,13 @@
+error[E0599]: `usize` is not an iterator
+ --> $DIR/issue-90315.rs:3:26
+ |
+LL | for _i in 0..arr.len().rev() {
+ | ^^^ `usize` is not an iterator
+ = note: the following trait bounds were not satisfied:
8
+ `usize: Iterator`
9
+ which is required by `&mut usize: Iterator`
10
+
11
+error: aborting due to previous error
12
13
+For more information about this error, try `rustc --explain E0599`.
0 commit comments