]> git.lizzy.rs Git - rust.git/blob - src/test/ui/error-codes/E0080.stderr
Rollup merge of #97915 - tbu-:pr_os_string_fmt_write, r=joshtriplett
[rust.git] / src / test / ui / error-codes / E0080.stderr
1 error[E0080]: evaluation of constant value failed
2   --> $DIR/E0080.rs:2:9
3    |
4 LL |     X = (1 << 500),
5    |         ^^^^^^^^^^ attempt to shift left by `500_i32`, which would overflow
6
7 error[E0080]: evaluation of constant value failed
8   --> $DIR/E0080.rs:4:9
9    |
10 LL |     Y = (1 / 0)
11    |         ^^^^^^^ attempt to divide `1_isize` by zero
12
13 error: aborting due to 2 previous errors
14
15 For more information about this error, try `rustc --explain E0080`.