1error[E0277]: `RangeTo<{integer}>` is not an iterator
2  --> $DIR/ranges.rs:2:14
3   |
4LL |     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
11error[E0277]: `RangeToInclusive<{integer}>` is not an iterator
12  --> $DIR/ranges.rs:4:14
13   |
14LL |     for _ in ..=10 {}
15   |              ^^^^^ if you meant to iterate until a value (including it), add a starting value
16   |
17   = help: the trait `Iterator` is not implemented for `RangeToInclusive<{integer}>`
18   = note: `..=end` is a `RangeToInclusive`, which cannot be iterated on; you might have meant to have a bounded `RangeInclusive`: `0..=end`
19   = note: required because of the requirements on the impl of `IntoIterator` for `RangeToInclusive<{integer}>`
20
21error: aborting due to 2 previous errors
22
23For more information about this error, try `rustc --explain E0277`.
24