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