### What it does
Finds occurrences of `Vec::resize(0, an_int)`

### Why is this bad?
This is probably an argument inversion mistake.

### Example
```
vec!(1, 2, 3, 4, 5).resize(0, 5)
```

Use instead:
```
vec!(1, 2, 3, 4, 5).clear()
```