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

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

### Example
```
todo!();
```