summaryrefslogtreecommitdiffstats
path: root/tests/ui/consts/issue-91434.rs
blob: 001dc708f893210ec189f1542906ba2340a17499 (plain)
1
2
3
4
5
fn main() {
    [9; [[9E; h]]];
    //~^ ERROR: expected at least one digit in exponent
    //~| ERROR: cannot find value `h` in this scope [E0425]
}