]> git.lizzy.rs Git - rust.git/blob - src/test/ui/consts/const-eval/issue-50814.stderr
Rollup merge of #59880 - solson:transmute-float, r=alexcrichton
[rust.git] / src / test / ui / consts / const-eval / issue-50814.stderr
1 error: any use of this value will cause an error
2   --> $DIR/issue-50814.rs:13:21
3    |
4 LL |     const MAX: u8 = A::MAX + B::MAX;
5    |     ----------------^^^^^^^^^^^^^^^-
6    |                     |
7    |                     attempt to add with overflow
8    |
9    = note: #[deny(const_err)] on by default
10
11 error[E0080]: evaluation of constant expression failed
12   --> $DIR/issue-50814.rs:17:5
13    |
14 LL |     &Sum::<U8,U8>::MAX
15    |     ^-----------------
16    |      |
17    |      referenced constant has errors
18
19 error: aborting due to 2 previous errors
20
21 For more information about this error, try `rustc --explain E0080`.