### What it does
Checks for instances of `mut mut` references.

### Why is this bad?
Multiple `mut`s don't add anything meaningful to the
source. This is either a copy'n'paste error, or it shows a fundamental
misunderstanding of references.

### Example
```
let x = &mut &mut y;
```