]> git.lizzy.rs Git - rust.git/blob - src/test/ui/consts/const-array-oob-arith.stderr
Do not suggest `let_else` if no bindings would be introduced
[rust.git] / src / test / ui / consts / const-array-oob-arith.stderr
1 error[E0308]: mismatched types
2   --> $DIR/const-array-oob-arith.rs:5:45
3    |
4 LL | const BLUB: [i32; (ARR[0] - 40) as usize] = [5];
5    |                                             ^^^ expected an array with a fixed size of 2 elements, found one with 1 element
6
7 error[E0308]: mismatched types
8   --> $DIR/const-array-oob-arith.rs:8:44
9    |
10 LL | const BOO: [i32; (ARR[0] - 41) as usize] = [5, 99];
11    |                                            ^^^^^^^ expected an array with a fixed size of 1 element, found one with 2 elements
12
13 error: aborting due to 2 previous errors
14
15 For more information about this error, try `rustc --explain E0308`.