Skip to content

Commit 40c9bc0

Browse files
notriddleMark-Simulacrum
authored andcommitted
diagnostics: regression test for <usize as Iterator>::rev
Closes #90315
1 parent b759b22 commit 40c9bc0

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -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+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
error[E0599]: `usize` is not an iterator
2+
--> $DIR/issue-90315.rs:3:26
3+
|
4+
LL | for _i in 0..arr.len().rev() {
5+
| ^^^ `usize` is not an iterator
6+
|
7+
= 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

Comments
 (0)