summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/writeln_empty_string.fixed
blob: e7d94acd130d67b2877a6bf45c4a9b2351785bbf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// run-rustfix

#![allow(unused_must_use)]
#![warn(clippy::writeln_empty_string)]
use std::io::Write;

fn main() {
    let mut v = Vec::new();

    // These should fail
    writeln!(v);

    let mut suggestion = Vec::new();
    writeln!(suggestion);

    // These should be fine
    writeln!(v);
    writeln!(v, " ");
    write!(v, "");
}