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