rust-clippy/tests/ui/write_with_newline.stderr

134 lines
3.3 KiB
Text
Raw Normal View History

error: using `write!()` with a format string that ends in a single newline
--> $DIR/write_with_newline.rs:13:5
|
2018-12-27 15:57:55 +00:00
LL | write!(&mut v, "Hello/n");
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: `-D clippy::write-with-newline` implied by `-D warnings`
help: use `writeln!()` instead
|
2021-08-11 14:21:33 +00:00
LL - write!(&mut v, "Hello/n");
LL + writeln!(&mut v, "Hello");
|
error: using `write!()` with a format string that ends in a single newline
--> $DIR/write_with_newline.rs:14:5
|
2018-12-27 15:57:55 +00:00
LL | write!(&mut v, "Hello {}/n", "world");
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2019-10-26 19:53:42 +00:00
|
help: use `writeln!()` instead
|
2021-08-11 14:21:33 +00:00
LL - write!(&mut v, "Hello {}/n", "world");
LL + writeln!(&mut v, "Hello {}", "world");
|
error: using `write!()` with a format string that ends in a single newline
--> $DIR/write_with_newline.rs:15:5
|
2018-12-27 15:57:55 +00:00
LL | write!(&mut v, "Hello {} {}/n", "world", "#2");
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2019-10-26 19:53:42 +00:00
|
help: use `writeln!()` instead
|
2021-08-11 14:21:33 +00:00
LL - write!(&mut v, "Hello {} {}/n", "world", "#2");
LL + writeln!(&mut v, "Hello {} {}", "world", "#2");
|
error: using `write!()` with a format string that ends in a single newline
--> $DIR/write_with_newline.rs:16:5
|
2018-12-27 15:57:55 +00:00
LL | write!(&mut v, "{}/n", 1265);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2019-10-26 19:53:42 +00:00
|
help: use `writeln!()` instead
|
2021-08-11 14:21:33 +00:00
LL - write!(&mut v, "{}/n", 1265);
LL + writeln!(&mut v, "{}", 1265);
|
error: using `write!()` with a format string that ends in a single newline
--> $DIR/write_with_newline.rs:17:5
|
LL | write!(&mut v, "/n");
| ^^^^^^^^^^^^^^^^^^^^
|
help: use `writeln!()` instead
|
2021-08-11 14:21:33 +00:00
LL - write!(&mut v, "/n");
LL + writeln!(&mut v);
|
error: using `write!()` with a format string that ends in a single newline
--> $DIR/write_with_newline.rs:36:5
|
LL | write!(&mut v, "//n"); // should fail
| ^^^^^^^^^^^^^^^^^^^^^^
2019-10-26 19:53:42 +00:00
|
help: use `writeln!()` instead
|
2021-08-11 14:21:33 +00:00
LL - write!(&mut v, "//n"); // should fail
LL + writeln!(&mut v, "/"); // should fail
|
error: using `write!()` with a format string that ends in a single newline
--> $DIR/write_with_newline.rs:43:5
|
LL | / write!(
LL | | &mut 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 | &mut v,
2021-08-11 14:21:33 +00:00
LL ~ ""
|
error: using `write!()` with a format string that ends in a single newline
--> $DIR/write_with_newline.rs:48:5
|
LL | / write!(
LL | | &mut 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 | &mut v,
2021-08-11 14:21:33 +00:00
LL ~ r""
|
error: using `write!()` with a format string that ends in a single newline
--> $DIR/write_with_newline.rs:57:5
|
LL | write!(&mut v, "/r/n"); //~ ERROR
| ^^^^^^^^^^^^^^^^^^^^^^^
|
help: use `writeln!()` instead
|
2021-08-11 14:21:33 +00:00
LL - write!(&mut v, "/r/n"); //~ ERROR
LL + writeln!(&mut v, "/r"); //~ ERROR
|
error: using `write!()` with a format string that ends in a single newline
--> $DIR/write_with_newline.rs:58:5
|
LL | write!(&mut v, "foo/rbar/n");
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
help: use `writeln!()` instead
|
2021-08-11 14:21:33 +00:00
LL - write!(&mut v, "foo/rbar/n");
LL + writeln!(&mut v, "foo/rbar");
|
error: aborting due to 10 previous errors