### What it does
Checks for local arrays that may be too large.

### Why is this bad?
Large local arrays may cause stack overflow.

### Example
```
let a = [0u32; 1_000_000];
```