1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
//@no-rustfix: overlapping suggestions
#![allow(unused_must_use)]
#![warn(clippy::write_literal)]
use std::io::Write;
fn main() {
let mut v = Vec::new();
writeln!(v, "{}", "{hello}");
//~^ ERROR: literal with an empty format string
//~| NOTE: `-D clippy::write-literal` implied by `-D warnings`
writeln!(v, r"{}", r"{hello}");
//~^ ERROR: literal with an empty format string
writeln!(v, "{}", '\'');
//~^ ERROR: literal with an empty format string
writeln!(v, "{}", '"');
//~^ ERROR: literal with an empty format string
writeln!(v, r"{}", '"');
//~^ ERROR: literal with an empty format string
writeln!(v, r"{}", '\'');
//~^ ERROR: literal with an empty format string
writeln!(
v,
"some {}",
"hello \
world!",
//~^^ ERROR: literal with an empty format string
);
writeln!(
v,
"some {}\
{} \\ {}",
"1", "2", "3",
);
writeln!(v, "{}", "\\");
//~^ ERROR: literal with an empty format string
writeln!(v, r"{}", "\\");
//~^ ERROR: literal with an empty format string
writeln!(v, r#"{}"#, "\\");
//~^ ERROR: literal with an empty format string
writeln!(v, "{}", r"\");
//~^ ERROR: literal with an empty format string
writeln!(v, "{}", "\r");
//~^ ERROR: literal with an empty format string
// hard mode
writeln!(v, r#"{}{}"#, '#', '"');
//~^ ERROR: literal with an empty format string
// should not lint
writeln!(v, r"{}", "\r");
}
|