]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/write_with_newline.stderr
Auto merge of #3603 - xfix:random-state-lint, r=phansch
[rust.git] / tests / ui / write_with_newline.stderr
index c8617b4939a0ab1d132bc8149189a08185ab485d..c18ec184876b4f5dfa0e1694fadf7abd661a7562 100644 (file)
@@ -1,28 +1,34 @@
 error: using `write!()` with a format string that ends in a single newline, consider using `writeln!()` instead
-  --> $DIR/write_with_newline.rs:12:5
+  --> $DIR/write_with_newline.rs:19:5
    |
-12 |     write!(&mut v, "Hello/n");
+LL |     write!(&mut v, "Hello/n");
    |     ^^^^^^^^^^^^^^^^^^^^^^^^^
    |
    = note: `-D clippy::write-with-newline` implied by `-D warnings`
 
 error: using `write!()` with a format string that ends in a single newline, consider using `writeln!()` instead
-  --> $DIR/write_with_newline.rs:13:5
+  --> $DIR/write_with_newline.rs:20:5
    |
-13 |     write!(&mut v, "Hello {}/n", "world");
+LL |     write!(&mut v, "Hello {}/n", "world");
    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 
 error: using `write!()` with a format string that ends in a single newline, consider using `writeln!()` instead
-  --> $DIR/write_with_newline.rs:14:5
+  --> $DIR/write_with_newline.rs:21:5
    |
-14 |     write!(&mut v, "Hello {} {}/n", "world", "#2");
+LL |     write!(&mut v, "Hello {} {}/n", "world", "#2");
    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 
 error: using `write!()` with a format string that ends in a single newline, consider using `writeln!()` instead
-  --> $DIR/write_with_newline.rs:15:5
+  --> $DIR/write_with_newline.rs:22:5
    |
-15 |     write!(&mut v, "{}/n", 1265);
+LL |     write!(&mut v, "{}/n", 1265);
    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 
-error: aborting due to 4 previous errors
+error: using `write!()` with a format string that ends in a single newline, consider using `writeln!()` instead
+  --> $DIR/write_with_newline.rs:41:5
+   |
+LL |     write!(&mut v, "//n");
+   |     ^^^^^^^^^^^^^^^^^^^^^^
+
+error: aborting due to 5 previous errors