ah, the `const` block is new to me. you're talking about doing something like:

```rust
const SOME_ARR: [u8; N] = const {
    let mut f = [0; N];
};
```