### What it does
Checks for the use of `iter.nth(0)`.

### Why is this bad?
`iter.next()` is equivalent to
`iter.nth(0)`, as they both consume the next element,
 but is more readable.

### Example
```
let x = s.iter().nth(0);
```

Use instead:
```
let x = s.iter().next();
```