rust-clippy/tests/ui/crashes/ice-9463.stderr

30 lines
999 B
Text
Raw Normal View History

error: this arithmetic operation will overflow
2024-02-17 12:16:29 +00:00
--> tests/ui/crashes/ice-9463.rs:3:14
|
LL | let _x = -1_i32 >> -1;
| ^^^^^^^^^^^^ attempt to shift right by `-1_i32`, which would overflow
|
note: the lint level is defined here
2024-02-17 12:16:29 +00:00
--> tests/ui/crashes/ice-9463.rs:1:9
|
2022-09-21 11:05:20 +00:00
LL | #![deny(arithmetic_overflow)]
| ^^^^^^^^^^^^^^^^^^^
error: this arithmetic operation will overflow
2024-02-17 12:16:29 +00:00
--> tests/ui/crashes/ice-9463.rs:5:14
|
LL | let _y = 1u32 >> 10000000000000u32;
| ^^^^^^^^^^^^^^^^^^^^^^^^^ attempt to shift right by `1316134912_u32`, which would overflow
error: literal out of range for `u32`
2024-02-17 12:16:29 +00:00
--> tests/ui/crashes/ice-9463.rs:5:22
|
LL | let _y = 1u32 >> 10000000000000u32;
| ^^^^^^^^^^^^^^^^^
|
= note: the literal `10000000000000u32` does not fit into the type `u32` whose range is `0..=4294967295`
2022-09-22 16:04:22 +00:00
= note: `#[deny(overflowing_literals)]` on by default
error: aborting due to 3 previous errors