]> git.lizzy.rs Git - rust.git/blob - src/test/ui/consts/issue-91434.rs
Rollup merge of #94577 - RalfJung:simd-miri, r=scottmcm
[rust.git] / src / test / ui / consts / issue-91434.rs
1 fn main() {
2     [9; [[9E; h]]];
3     //~^ ERROR: expected at least one digit in exponent
4     //~| ERROR: cannot find value `h` in this scope [E0425]
5     //~| ERROR: constant expression depends on a generic parameter
6 }