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