### What it does
Detects classic underflow/overflow checks.

### Why is this bad?
Most classic C underflow/overflow checks will fail in
Rust. Users can use functions like `overflowing_*` and `wrapping_*` instead.

### Example
```
a + b < a;
```