rust-clippy/tests/ui/write_with_newline.stderr

125 lines
2.9 KiB
Text
Raw Normal View History

error: using `write!()` with a format string that ends in a single newline
2024-02-17 12:16:29 +00:00
--> tests/ui/write_with_newline.rs:12:5
|
LL | write!(v, "Hello\n");
| ^^^^^^^^^^^^^^^^^^^^
|
= note: `-D clippy::write-with-newline` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::write_with_newline)]`
help: use `writeln!` instead
|
LL - write!(v, "Hello\n");
LL + writeln!(v, "Hello");
2022-06-15 11:15:54 +00:00
|
error: using `write!()` with a format string that ends in a single newline
2024-02-17 12:16:29 +00:00
--> tests/ui/write_with_newline.rs:15:5
|
LL | write!(v, "Hello {}\n", "world");
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2019-10-26 19:53:42 +00:00
|
help: use `writeln!` instead
|
LL - write!(v, "Hello {}\n", "world");
LL + writeln!(v, "Hello {}", "world");
2022-06-15 11:15:54 +00:00
|
error: using `write!()` with a format string that ends in a single newline
2024-02-17 12:16:29 +00:00
--> tests/ui/write_with_newline.rs:17:5
|
LL | write!(v, "Hello {} {}\n", "world", "#2");
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2019-10-26 19:53:42 +00:00
|
help: use `writeln!` instead
|
LL - write!(v, "Hello {} {}\n", "world", "#2");
LL + writeln!(v, "Hello {} {}", "world", "#2");
2022-06-15 11:15:54 +00:00
|
error: using `write!()` with a format string that ends in a single newline
2024-02-17 12:16:29 +00:00
--> tests/ui/write_with_newline.rs:19:5
|
LL | write!(v, "{}\n", 1265);
| ^^^^^^^^^^^^^^^^^^^^^^^
2019-10-26 19:53:42 +00:00
|
help: use `writeln!` instead
|
LL - write!(v, "{}\n", 1265);
LL + writeln!(v, "{}", 1265);
2022-06-15 11:15:54 +00:00
|
error: using `write!()` with a format string that ends in a single newline
2024-02-17 12:16:29 +00:00
--> tests/ui/write_with_newline.rs:21:5
|
LL | write!(v, "\n");
| ^^^^^^^^^^^^^^^
|
help: use `writeln!` instead
|
LL - write!(v, "\n");
LL + writeln!(v);
2022-06-15 11:15:54 +00:00
|
error: using `write!()` with a format string that ends in a single newline
2024-02-17 12:16:29 +00:00
--> tests/ui/write_with_newline.rs:44:5
|
LL | write!(v, "\\\n");
| ^^^^^^^^^^^^^^^^^
2019-10-26 19:53:42 +00:00
|
help: use `writeln!` instead
|
LL - write!(v, "\\\n");
LL + writeln!(v, "\\");
2022-06-15 11:15:54 +00:00
|
error: using `write!()` with a format string that ends in a single newline
2024-02-17 12:16:29 +00:00
--> tests/ui/write_with_newline.rs:53:5
|
LL | / write!(
LL | |
LL | | v,
LL | | "
LL | | "
LL | | );
| |_____^
2019-10-26 19:53:42 +00:00
|
help: use `writeln!` instead
|
2021-08-11 14:21:33 +00:00
LL ~ writeln!(
LL |
LL ~ v
|
error: using `write!()` with a format string that ends in a single newline
2024-02-17 12:16:29 +00:00
--> tests/ui/write_with_newline.rs:59:5
|
LL | / write!(
LL | |
LL | | v,
LL | | r"
LL | | "
LL | | );
| |_____^
2019-10-26 19:53:42 +00:00
|
help: use `writeln!` instead
|
2021-08-11 14:21:33 +00:00
LL ~ writeln!(
LL |
LL ~ v
|
error: using `write!()` with a format string that ends in a single newline
2024-02-17 12:16:29 +00:00
--> tests/ui/write_with_newline.rs:69:5
|
LL | write!(v, "\\r\n");
| ^^^^^^^^^^^^^^^^^^
|
help: use `writeln!` instead
|
LL - write!(v, "\\r\n");
LL + writeln!(v, "\\r");
2022-06-15 11:15:54 +00:00
|
error: aborting due to 9 previous errors