rust/src/test/ui/consts/const-eval/const-eval-overflow-3b.stderr

28 lines
898 B
Plaintext
Raw Normal View History

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];
| ^^^ 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`
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
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`.