summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/writeln_empty_string.rs
blob: 662c62f02116e64d4a21213bface9d73b8bb11d4 (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, "");
}