2018-08-08 07:28:26 -05:00
|
|
|
error[E0308]: mismatched types
|
2020-10-24 18:21:40 -05:00
|
|
|
--> $DIR/const-eval-overflow-3b.rs:16:22
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | = [0; (i8::MAX + 1u8) as usize];
|
2019-11-15 11:37:01 -06:00
|
|
|
| ^^^ expected `i8`, found `u8`
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error[E0277]: cannot add `u8` to `i8`
|
2020-10-24 18:21:40 -05:00
|
|
|
--> $DIR/const-eval-overflow-3b.rs:16:20
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | = [0; (i8::MAX + 1u8) as usize];
|
|
|
|
| ^ no implementation for `i8 + u8`
|
|
|
|
|
|
2020-09-02 02:40:56 -05:00
|
|
|
= help: the trait `Add<u8>` is not implemented for `i8`
|
2018-08-08 07:28:26 -05:00
|
|
|
|
2020-04-11 23:16:38 -05:00
|
|
|
error: aborting due to 2 previous errors
|
2018-08-08 07:28:26 -05:00
|
|
|
|
2019-04-17 12:26:38 -05:00
|
|
|
Some errors have detailed explanations: E0277, E0308.
|
2018-08-08 07:28:26 -05:00
|
|
|
For more information about an error, try `rustc --explain E0277`.
|