Static rustc_lint::types::OVERFLOWING_LITERALS
source · [−]static OVERFLOWING_LITERALS: &'static Lint
Expand description
The overflowing_literals
lint detects literal out of range for its
type.
Example
ⓘ
let x: u8 = 1000;
{{produces}}
Explanation
It is usually a mistake to use a literal that overflows the type where it is used. Either use a literal that is within range, or change the type to be within the range of the literal.