### What it does
Checks for usage of `unimplemented!`.

### Why is this bad?
This macro should not be present in production code

### Example
```
unimplemented!();
```