summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/write_literal_2.stderr
blob: 9ff297069c402c3876e0678e4498919571d0f821 (plain)
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
error: literal with an empty format string
  --> $DIR/write_literal_2.rs:9:23
   |
LL |     writeln!(v, "{}", "{hello}");
   |                       ^^^^^^^^^
   |
   = note: `-D clippy::write-literal` implied by `-D warnings`
help: try this
   |
LL -     writeln!(v, "{}", "{hello}");
LL +     writeln!(v, "{{hello}}");
   |

error: literal with an empty format string
  --> $DIR/write_literal_2.rs:10:24
   |
LL |     writeln!(v, r"{}", r"{hello}");
   |                        ^^^^^^^^^^
   |
help: try this
   |
LL -     writeln!(v, r"{}", r"{hello}");
LL +     writeln!(v, r"{{hello}}");
   |

error: literal with an empty format string
  --> $DIR/write_literal_2.rs:11:23
   |
LL |     writeln!(v, "{}", '/'');
   |                       ^^^^
   |
help: try this
   |
LL -     writeln!(v, "{}", '/'');
LL +     writeln!(v, "'");
   |

error: literal with an empty format string
  --> $DIR/write_literal_2.rs:12:23
   |
LL |     writeln!(v, "{}", '"');
   |                       ^^^
   |
help: try this
   |
LL -     writeln!(v, "{}", '"');
LL +     writeln!(v, "/"");
   |

error: literal with an empty format string
  --> $DIR/write_literal_2.rs:14:24
   |
LL |     writeln!(v, r"{}", '/'');
   |                        ^^^^
   |
help: try this
   |
LL -     writeln!(v, r"{}", '/'');
LL +     writeln!(v, r"'");
   |

error: literal with an empty format string
  --> $DIR/write_literal_2.rs:18:9
   |
LL | /         "hello /
LL | |         world!"
   | |_______________^
   |
help: try this
   |
LL ~         "some hello /
LL ~         world!"
   |

error: literal with an empty format string
  --> $DIR/write_literal_2.rs:25:9
   |
LL |         "1", "2", "3",
   |         ^^^
   |
help: try this
   |
LL ~         "some 1/
LL ~         {} / {}", "2", "3",
   |

error: literal with an empty format string
  --> $DIR/write_literal_2.rs:25:14
   |
LL |         "1", "2", "3",
   |              ^^^
   |
help: try this
   |
LL ~         2 / {}",
LL ~         "1", "3",
   |

error: literal with an empty format string
  --> $DIR/write_literal_2.rs:25:19
   |
LL |         "1", "2", "3",
   |                   ^^^
   |
help: try this
   |
LL ~         {} / 3",
LL ~         "1", "2",
   |

error: aborting due to 9 previous errors