summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/eprint_with_newline.stderr
blob: 0eefb9f0ca978bafd91c8d8186321c2f8a37a7d2 (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
113
114
115
116
117
error: using `eprint!()` with a format string that ends in a single newline
  --> $DIR/eprint_with_newline.rs:5:5
   |
LL |     eprint!("Hello/n");
   |     ^^^^^^^^^^^^^^^^^^
   |
   = note: `-D clippy::print-with-newline` implied by `-D warnings`
help: use `eprintln!` instead
   |
LL -     eprint!("Hello/n");
LL +     eprintln!("Hello");
   |

error: using `eprint!()` with a format string that ends in a single newline
  --> $DIR/eprint_with_newline.rs:6:5
   |
LL |     eprint!("Hello {}/n", "world");
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
help: use `eprintln!` instead
   |
LL -     eprint!("Hello {}/n", "world");
LL +     eprintln!("Hello {}", "world");
   |

error: using `eprint!()` with a format string that ends in a single newline
  --> $DIR/eprint_with_newline.rs:7:5
   |
LL |     eprint!("Hello {} {}/n", "world", "#2");
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
help: use `eprintln!` instead
   |
LL -     eprint!("Hello {} {}/n", "world", "#2");
LL +     eprintln!("Hello {} {}", "world", "#2");
   |

error: using `eprint!()` with a format string that ends in a single newline
  --> $DIR/eprint_with_newline.rs:8:5
   |
LL |     eprint!("{}/n", 1265);
   |     ^^^^^^^^^^^^^^^^^^^^^
   |
help: use `eprintln!` instead
   |
LL -     eprint!("{}/n", 1265);
LL +     eprintln!("{}", 1265);
   |

error: using `eprint!()` with a format string that ends in a single newline
  --> $DIR/eprint_with_newline.rs:9:5
   |
LL |     eprint!("/n");
   |     ^^^^^^^^^^^^^
   |
help: use `eprintln!` instead
   |
LL -     eprint!("/n");
LL +     eprintln!();
   |

error: using `eprint!()` with a format string that ends in a single newline
  --> $DIR/eprint_with_newline.rs:28:5
   |
LL |     eprint!("//n"); // should fail
   |     ^^^^^^^^^^^^^^^
   |
help: use `eprintln!` instead
   |
LL -     eprint!("//n"); // should fail
LL +     eprintln!("/"); // should fail
   |

error: using `eprint!()` with a format string that ends in a single newline
  --> $DIR/eprint_with_newline.rs:35:5
   |
LL | /     eprint!(
LL | |         "
LL | | "
LL | |     );
   | |_____^
   |
help: use `eprintln!` instead
   |
LL ~     eprintln!(
LL ~         
   |

error: using `eprint!()` with a format string that ends in a single newline
  --> $DIR/eprint_with_newline.rs:39:5
   |
LL | /     eprint!(
LL | |         r"
LL | | "
LL | |     );
   | |_____^
   |
help: use `eprintln!` instead
   |
LL ~     eprintln!(
LL ~         
   |

error: using `eprint!()` with a format string that ends in a single newline
  --> $DIR/eprint_with_newline.rs:47:5
   |
LL |     eprint!("/r/n"); //~ ERROR
   |     ^^^^^^^^^^^^^^^^
   |
help: use `eprintln!` instead
   |
LL -     eprint!("/r/n"); //~ ERROR
LL +     eprintln!("/r"); //~ ERROR
   |

error: aborting due to 9 previous errors