]> git.lizzy.rs Git - rust.git/blob - src/test/ui/consts/const-eval/const-eval-overflow-4b.stderr
Update tests to remove old numeric constants
[rust.git] / src / test / ui / consts / const-eval / const-eval-overflow-4b.stderr
1 error[E0308]: mismatched types
2   --> $DIR/const-eval-overflow-4b.rs:9:30
3    |
4 LL |     : [u32; (i8::MAX as i8 + 1u8) as usize]
5    |                              ^^^ expected `i8`, found `u8`
6
7 error[E0277]: cannot add `u8` to `i8`
8   --> $DIR/const-eval-overflow-4b.rs:9:28
9    |
10 LL |     : [u32; (i8::MAX as i8 + 1u8) as usize]
11    |                            ^ no implementation for `i8 + u8`
12    |
13    = help: the trait `Add<u8>` is not implemented for `i8`
14
15 error[E0604]: only `u8` can be cast as `char`, not `i8`
16   --> $DIR/const-eval-overflow-4b.rs:22:13
17    |
18 LL |     : [u32; 5i8 as char as usize]
19    |             ^^^^^^^^^^^ invalid cast
20
21 error: aborting due to 3 previous errors
22
23 Some errors have detailed explanations: E0277, E0308, E0604.
24 For more information about an error, try `rustc --explain E0277`.