]> git.lizzy.rs Git - rust.git/blob - src/test/ui/consts/const-eval/issue-50814.stderr
Rollup merge of #81675 - poliorcetics:respect-shortness, r=jyn514
[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:15:21
3    |
4 LL |     const MAX: u8 = A::MAX + B::MAX;
5    |     ----------------^^^^^^^^^^^^^^^-
6    |                     |
7    |                     attempt to compute `u8::MAX + u8::MAX`, which would overflow
8    |
9    = note: `#[deny(const_err)]` on by default
10    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
11    = note: for more information, see issue #71800 <https://github.com/rust-lang/rust/issues/71800>
12
13 error[E0080]: evaluation of constant value failed
14   --> $DIR/issue-50814.rs:21:6
15    |
16 LL |     &Sum::<U8,U8>::MAX
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`.