]> git.lizzy.rs Git - rust.git/blob - src/test/ui/consts/const-array-oob-arith.stderr
f4a4c091e78a00aeb99cab28205e33ae5391d5f5
[rust.git] / src / test / ui / consts / const-array-oob-arith.stderr
1 error[E0308]: mismatched types
2   --> $DIR/const-array-oob-arith.rs:7: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    = note: expected array `[i32; 2]`
8               found array `[i32; 1]`
9
10 error[E0308]: mismatched types
11   --> $DIR/const-array-oob-arith.rs:10:44
12    |
13 LL | const BOO: [i32; (ARR[0] - 41) as usize] = [5, 99];
14    |                                            ^^^^^^^ expected an array with a fixed size of 1 element, found one with 2 elements
15    |
16    = note: expected array `[i32; 1]`
17               found array `[i32; 2]`
18
19 error: aborting due to 2 previous errors
20
21 For more information about this error, try `rustc --explain E0308`.