### What it does
Checks for statements which have no effect.

### Why is this bad?
Unlike dead code, these statements are actually
executed. However, as they have no effect, all they do is make the code less
readable.

### Example
```
0;
```