### What it does
This lint warns when you use `println!("")` to
print a newline.

### Why is this bad?
You should use `println!()`, which is simpler.

### Example
```
println!("");
```

Use instead:
```
println!();
```