]> git.proxmox.com Git - rustc.git/blob - src/test/ui/iterators/ranges.stderr
New upstream version 1.55.0+dfsg1
[rustc.git] / src / test / ui / iterators / ranges.stderr
1 error[E0277]: `RangeTo<{integer}>` is not an iterator
2 --> $DIR/ranges.rs:2:14
3 |
4 LL | for _ in ..10 {}
5 | ^^^^ if you meant to iterate until a value, add a starting value
6 |
7 = help: the trait `Iterator` is not implemented for `RangeTo<{integer}>`
8 = note: `..end` is a `RangeTo`, which cannot be iterated on; you might have meant to have a bounded `Range`: `0..end`
9 = note: required because of the requirements on the impl of `IntoIterator` for `RangeTo<{integer}>`
10 note: required by `into_iter`
11 --> $SRC_DIR/core/src/iter/traits/collect.rs:LL:COL
12 |
13 LL | fn into_iter(self) -> Self::IntoIter;
14 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
15
16 error[E0277]: `RangeToInclusive<{integer}>` is not an iterator
17 --> $DIR/ranges.rs:4:14
18 |
19 LL | for _ in ..=10 {}
20 | ^^^^^ if you meant to iterate until a value (including it), add a starting value
21 |
22 = help: the trait `Iterator` is not implemented for `RangeToInclusive<{integer}>`
23 = note: `..=end` is a `RangeToInclusive`, which cannot be iterated on; you might have meant to have a bounded `RangeInclusive`: `0..=end`
24 = note: required because of the requirements on the impl of `IntoIterator` for `RangeToInclusive<{integer}>`
25 note: required by `into_iter`
26 --> $SRC_DIR/core/src/iter/traits/collect.rs:LL:COL
27 |
28 LL | fn into_iter(self) -> Self::IntoIter;
29 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
30
31 error: aborting due to 2 previous errors
32
33 For more information about this error, try `rustc --explain E0277`.