
``` error[E0610]: `{integer}` is a primitive type and therefore doesn't have fields --> $DIR/attempted-access-non-fatal.rs:7:15 | LL | let _ = 2.l; | ^ | help: if intended to be a floating point literal, consider adding a `0` after the period and a `f64` suffix | LL - let _ = 2.l; LL + let _ = 2.0f64; | ```
24 lines
619 B
Text
24 lines
619 B
Text
error: range endpoint is out of range for `u8`
|
|
--> $DIR/issue-109529.rs:4:14
|
|
|
|
|
LL | for _ in 0..256 as u8 {}
|
|
| ------^^^^^^
|
|
| |
|
|
| help: use an inclusive range instead: `0..=255`
|
|
|
|
|
= note: `#[deny(overflowing_literals)]` on by default
|
|
|
|
error: range endpoint is out of range for `u8`
|
|
--> $DIR/issue-109529.rs:5:14
|
|
|
|
|
LL | for _ in 0..(256 as u8) {}
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
|
help: use an inclusive range instead
|
|
|
|
|
LL - for _ in 0..(256 as u8) {}
|
|
LL + for _ in 0..=(255 as u8) {}
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|