2018-08-08 07:28:26 -05:00
|
|
|
error[E0308]: mismatched types
|
2019-04-22 13:50:11 -05:00
|
|
|
--> $DIR/const-eval-overflow-3b.rs:18: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`
|
2019-04-22 13:50:11 -05:00
|
|
|
--> $DIR/const-eval-overflow-3b.rs:18:20
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | = [0; (i8::MAX + 1u8) as usize];
|
|
|
|
| ^ no implementation for `i8 + u8`
|
|
|
|
|
|
|
|
|
= help: the trait `std::ops::Add<u8>` is not implemented for `i8`
|
|
|
|
|
2020-03-14 09:30:35 -05:00
|
|
|
error[E0308]: mismatched types
|
|
|
|
--> $DIR/const-eval-overflow-3b.rs:18:7
|
|
|
|
|
|
|
|
|
LL | = [0; (i8::MAX + 1u8) as usize];
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected `128usize`, found `(i8::MAX + 1u8) as usize`
|
|
|
|
|
|
|
|
|
= note: expected array `[u32; 128]`
|
|
|
|
found array `[u32; _]`
|
|
|
|
|
|
|
|
error: aborting due to 3 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`.
|