2018-08-08 07:28:26 -05:00
|
|
|
error[E0308]: mismatched types
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/range-1.rs:5:19
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | let _ = 0u32..10i32;
|
2019-11-15 11:37:01 -06:00
|
|
|
| ^^^^^ expected `u32`, found `i32`
|
2018-08-08 07:28:26 -05:00
|
|
|
|
2020-09-02 02:40:56 -05:00
|
|
|
error[E0277]: the trait bound `bool: Step` is not satisfied
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/range-1.rs:9:14
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | for i in false..true {}
|
2020-09-02 02:40:56 -05:00
|
|
|
| ^^^^^^^^^^^ the trait `Step` is not implemented for `bool`
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2021-12-13 14:56:40 -06:00
|
|
|
= help: the following other types implement trait `Step`:
|
|
|
|
char
|
2023-06-27 18:31:06 -05:00
|
|
|
isize
|
|
|
|
i8
|
2021-12-13 14:56:40 -06:00
|
|
|
i16
|
|
|
|
i32
|
|
|
|
i64
|
2023-06-27 18:31:06 -05:00
|
|
|
i128
|
|
|
|
usize
|
2021-12-13 14:56:40 -06:00
|
|
|
and 5 others
|
2022-08-15 15:31:37 -05:00
|
|
|
= note: required for `std::ops::Range<bool>` to implement `Iterator`
|
|
|
|
= note: required for `std::ops::Range<bool>` to implement `IntoIterator`
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error[E0277]: the size for values of type `[{integer}]` cannot be known at compilation time
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/range-1.rs:14:17
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | let range = *arr..;
|
2022-08-16 23:57:17 -05:00
|
|
|
| ^^^^ doesn't have a size known at compile-time
|
2021-06-10 06:52:00 -05:00
|
|
|
|
|
2021-07-31 11:26:55 -05:00
|
|
|
= help: the trait `Sized` is not implemented for `[{integer}]`
|
|
|
|
note: required by a bound in `RangeFrom`
|
|
|
|
--> $SRC_DIR/core/src/ops/range.rs:LL:COL
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|
2019-04-17 12:26:38 -05:00
|
|
|
Some errors have detailed explanations: E0277, E0308.
|
2018-08-08 07:28:26 -05:00
|
|
|
For more information about an error, try `rustc --explain E0277`.
|