summary refs log tree commit diff
path: root/src/test/ui/consts/const-eval/const-eval-overflow-4.stderr
blob: b12aa032b6070e7eac16f3721a3e7f8822b5c99b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
error: attempt to add with overflow
  --> $DIR/const-eval-overflow-4.rs:23:13
   |
LL |     : [u32; (i8::MAX as i8 + 1i8) as usize]
   |             ^^^^^^^^^^^^^^^^^^^^^
   |
   = note: #[deny(const_err)] on by default

error[E0080]: could not evaluate constant expression
  --> $DIR/const-eval-overflow-4.rs:23:7
   |
LL |     : [u32; (i8::MAX as i8 + 1i8) as usize]
   |       ^^^^^^---------------------^^^^^^^^^^
   |             |
   |             attempt to add with overflow

error: aborting due to 2 previous errors

For more information about this error, try `rustc --explain E0080`.