### What it does
Checks for out of bounds array indexing with a constant
index.

### Why is this bad?
This will always panic at runtime.

### Example
```
let x = [1, 2, 3, 4];

x[9];
&x[2..9];
```

Use instead:
```
// Index within bounds

x[0];
x[3];
```