]> git.lizzy.rs Git - rust.git/blob - src/test/ui/consts/issue-91434.rs
Do not suggest `let_else` if no bindings would be introduced
[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 }