2018-08-26 08:19:34 -05:00
|
|
|
error: any use of this value will cause an error
|
2019-03-10 19:28:52 -05:00
|
|
|
--> $DIR/issue-50814.rs:13:21
|
2018-08-26 08:19:34 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | const MAX: u8 = A::MAX + B::MAX;
|
2019-03-10 19:28:52 -05:00
|
|
|
| ----------------^^^^^^^^^^^^^^^-
|
2018-08-26 08:19:34 -05:00
|
|
|
| |
|
|
|
|
| attempt to add with overflow
|
2018-06-02 20:01:06 -05:00
|
|
|
|
|
2019-07-16 15:17:38 -05:00
|
|
|
= note: `#[deny(const_err)]` on by default
|
2018-06-02 20:01:06 -05:00
|
|
|
|
2018-08-26 08:19:34 -05:00
|
|
|
error[E0080]: evaluation of constant expression failed
|
2019-09-03 20:56:15 -05:00
|
|
|
--> $DIR/issue-50814.rs:18:5
|
2018-06-02 19:04:20 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | &Sum::<U8,U8>::MAX
|
2018-06-02 19:04:20 -05:00
|
|
|
| ^-----------------
|
|
|
|
| |
|
|
|
|
| referenced constant has errors
|
|
|
|
|
2019-09-03 20:56:15 -05:00
|
|
|
error: any use of this value will cause an error
|
|
|
|
--> $DIR/issue-50814.rs:13:21
|
|
|
|
|
|
|
|
|
LL | const MAX: u8 = A::MAX + B::MAX;
|
|
|
|
| ----------------^^^^^^^^^^^^^^^-
|
|
|
|
| |
|
|
|
|
| attempt to add with overflow
|
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
2018-06-02 19:04:20 -05:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0080`.
|