summary refs log tree commit diff
path: root/src/test/ui/consts/issue-91434.rs
blob: fc7731291b371a33906f3d56b03adad01a989a24 (plain)
1
2
3
4
5
6
fn main() {
    [9; [[9E; h]]];
    //~^ ERROR: expected at least one digit in exponent
    //~| ERROR: cannot find value `h` in this scope [E0425]
    //~| ERROR: constant expression depends on a generic parameter
}