]> git.lizzy.rs Git - rust.git/blob - tests/ui/numbers-arithmetic/overflowing-rsh-3.stderr
Rollup merge of #106644 - alexcrichton:update-wasi-toolchain, r=cuviper
[rust.git] / tests / ui / numbers-arithmetic / overflowing-rsh-3.stderr
1 error: this arithmetic operation will overflow
2   --> $DIR/overflowing-rsh-3.rs:7:14
3    |
4 LL |     let _x = -1_i64 >> 64;
5    |              ^^^^^^^^^^^^ attempt to shift right by `64_i32`, which would overflow
6    |
7 note: the lint level is defined here
8   --> $DIR/overflowing-rsh-3.rs:4:9
9    |
10 LL | #![deny(arithmetic_overflow)]
11    |         ^^^^^^^^^^^^^^^^^^^
12
13 error: aborting due to previous error
14