mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
51 lines
1.5 KiB
Plaintext
51 lines
1.5 KiB
Plaintext
error: range endpoint is out of range for `u8`
|
|
--> $DIR/lint-range-endpoint-overflow.rs:4:19
|
|
|
|
|
LL | let range_a = 0..256;
|
|
| ^^^^^^ help: use an inclusive range instead: `0..=255`
|
|
|
|
|
note: the lint level is defined here
|
|
--> $DIR/lint-range-endpoint-overflow.rs:1:9
|
|
|
|
|
LL | #![deny(overflowing_literals)]
|
|
| ^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: literal out of range for `u8`
|
|
--> $DIR/lint-range-endpoint-overflow.rs:6:23
|
|
|
|
|
LL | let range_c = 0..=256;
|
|
| ^^^
|
|
|
|
|
= note: the literal `256` does not fit into the type `u8` whose range is `0..=255`
|
|
|
|
error: literal out of range for `u8`
|
|
--> $DIR/lint-range-endpoint-overflow.rs:7:19
|
|
|
|
|
LL | let range_d = 256..5;
|
|
| ^^^
|
|
|
|
|
= note: the literal `256` does not fit into the type `u8` whose range is `0..=255`
|
|
|
|
error: literal out of range for `u8`
|
|
--> $DIR/lint-range-endpoint-overflow.rs:8:22
|
|
|
|
|
LL | let range_e = 0..257;
|
|
| ^^^
|
|
|
|
|
= note: the literal `257` does not fit into the type `u8` whose range is `0..=255`
|
|
|
|
error: range endpoint is out of range for `u8`
|
|
--> $DIR/lint-range-endpoint-overflow.rs:9:20
|
|
|
|
|
LL | let _range_f = 0..256u8;
|
|
| ^^^^^^^^ help: use an inclusive range instead: `0..=255u8`
|
|
|
|
error: range endpoint is out of range for `i8`
|
|
--> $DIR/lint-range-endpoint-overflow.rs:10:20
|
|
|
|
|
LL | let _range_g = 0..128i8;
|
|
| ^^^^^^^^ help: use an inclusive range instead: `0..=127i8`
|
|
|
|
error: aborting due to 6 previous errors
|
|
|