]> git.lizzy.rs Git - rust.git/blob - tests/ui/consts/const-array-oob-arith.rs
Rollup merge of #106951 - tmiasko:rm-simplify-initial, r=oli-obk
[rust.git] / tests / ui / consts / const-array-oob-arith.rs
1 const ARR: [i32; 6] = [42, 43, 44, 45, 46, 47];
2 const IDX: usize = 3;
3 const VAL: i32 = ARR[IDX];
4 const BONG: [i32; (ARR[0] - 41) as usize] = [5];
5 const BLUB: [i32; (ARR[0] - 40) as usize] = [5];
6 //~^ ERROR: mismatched types
7 //~| expected an array with a fixed size of 2 elements, found one with 1 element
8 const BOO: [i32; (ARR[0] - 41) as usize] = [5, 99];
9 //~^ ERROR: mismatched types
10 //~| expected an array with a fixed size of 1 element, found one with 2 elements
11
12 fn main() {
13     let _ = VAL;
14 }