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