]> git.lizzy.rs Git - rust.git/blob - src/test/ui/error-codes/E0080.stderr
Rollup merge of #59056 - scottmcm:even-fewer-lifetimes, r=sfackler
[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 with 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 by zero
12
13 error: aborting due to 2 previous errors
14
15 For more information about this error, try `rustc --explain E0080`.