]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/write_literal.stderr
iterate List by value
[rust.git] / tests / ui / write_literal.stderr
index 323a83e244aad5bb66ecc4467e120645e78d4a8c..54a787fe555af67960403da0c0317714bc731a43 100644 (file)
@@ -1,88 +1,88 @@
-error: writing a literal with an empty format string
-  --> $DIR/write_literal.rs:26:79
+error: literal with an empty format string
+  --> $DIR/write_literal.rs:27:79
    |
-26 |     writeln!(&mut v, "{} of {:b} people know binary, the other half doesn't", 1, 2);
+LL |     writeln!(&mut v, "{} of {:b} people know binary, the other half doesn't", 1, 2);
    |                                                                               ^
    |
-   = note: `-D write-literal` implied by `-D warnings`
+   = note: `-D clippy::write-literal` implied by `-D warnings`
 
-error: writing a literal with an empty format string
-  --> $DIR/write_literal.rs:27:32
+error: literal with an empty format string
+  --> $DIR/write_literal.rs:28:32
    |
-27 |     write!(&mut v, "Hello {}", "world");
+LL |     write!(&mut v, "Hello {}", "world");
    |                                ^^^^^^^
 
-error: writing a literal with an empty format string
-  --> $DIR/write_literal.rs:28:44
+error: literal with an empty format string
+  --> $DIR/write_literal.rs:29:44
    |
-28 |     writeln!(&mut v, "Hello {} {}", world, "world");
+LL |     writeln!(&mut v, "Hello {} {}", world, "world");
    |                                            ^^^^^^^
 
-error: writing a literal with an empty format string
-  --> $DIR/write_literal.rs:29:34
+error: literal with an empty format string
+  --> $DIR/write_literal.rs:30:34
    |
-29 |     writeln!(&mut v, "Hello {}", "world");
+LL |     writeln!(&mut v, "Hello {}", "world");
    |                                  ^^^^^^^
 
-error: writing a literal with an empty format string
-  --> $DIR/write_literal.rs:30:38
+error: literal with an empty format string
+  --> $DIR/write_literal.rs:31:38
    |
-30 |     writeln!(&mut v, "10 / 4 is {}", 2.5);
+LL |     writeln!(&mut v, "10 / 4 is {}", 2.5);
    |                                      ^^^
 
-error: writing a literal with an empty format string
-  --> $DIR/write_literal.rs:31:36
+error: literal with an empty format string
+  --> $DIR/write_literal.rs:32:36
    |
-31 |     writeln!(&mut v, "2 + 1 = {}", 3);
+LL |     writeln!(&mut v, "2 + 1 = {}", 3);
    |                                    ^
 
-error: writing a literal with an empty format string
-  --> $DIR/write_literal.rs:36:33
+error: literal with an empty format string
+  --> $DIR/write_literal.rs:37:33
    |
-36 |     writeln!(&mut v, "{0} {1}", "hello", "world");
+LL |     writeln!(&mut v, "{0} {1}", "hello", "world");
    |                                 ^^^^^^^
 
-error: writing a literal with an empty format string
-  --> $DIR/write_literal.rs:36:42
+error: literal with an empty format string
+  --> $DIR/write_literal.rs:37:42
    |
-36 |     writeln!(&mut v, "{0} {1}", "hello", "world");
+LL |     writeln!(&mut v, "{0} {1}", "hello", "world");
    |                                          ^^^^^^^
 
-error: writing a literal with an empty format string
-  --> $DIR/write_literal.rs:37:33
+error: literal with an empty format string
+  --> $DIR/write_literal.rs:38:33
    |
-37 |     writeln!(&mut v, "{1} {0}", "hello", "world");
+LL |     writeln!(&mut v, "{1} {0}", "hello", "world");
    |                                 ^^^^^^^
 
-error: writing a literal with an empty format string
-  --> $DIR/write_literal.rs:37:42
+error: literal with an empty format string
+  --> $DIR/write_literal.rs:38:42
    |
-37 |     writeln!(&mut v, "{1} {0}", "hello", "world");
+LL |     writeln!(&mut v, "{1} {0}", "hello", "world");
    |                                          ^^^^^^^
 
-error: writing a literal with an empty format string
-  --> $DIR/write_literal.rs:40:41
+error: literal with an empty format string
+  --> $DIR/write_literal.rs:41:43
    |
-40 |     writeln!(&mut v, "{foo} {bar}", foo="hello", bar="world");
-   |                                         ^^^^^^^
+LL |     writeln!(&mut v, "{foo} {bar}", foo = "hello", bar = "world");
+   |                                           ^^^^^^^
 
-error: writing a literal with an empty format string
-  --> $DIR/write_literal.rs:40:54
+error: literal with an empty format string
+  --> $DIR/write_literal.rs:41:58
    |
-40 |     writeln!(&mut v, "{foo} {bar}", foo="hello", bar="world");
-   |                                                      ^^^^^^^
+LL |     writeln!(&mut v, "{foo} {bar}", foo = "hello", bar = "world");
+   |                                                          ^^^^^^^
 
-error: writing a literal with an empty format string
-  --> $DIR/write_literal.rs:41:41
+error: literal with an empty format string
+  --> $DIR/write_literal.rs:42:43
    |
-41 |     writeln!(&mut v, "{bar} {foo}", foo="hello", bar="world");
-   |                                         ^^^^^^^
+LL |     writeln!(&mut v, "{bar} {foo}", foo = "hello", bar = "world");
+   |                                           ^^^^^^^
 
-error: writing a literal with an empty format string
-  --> $DIR/write_literal.rs:41:54
+error: literal with an empty format string
+  --> $DIR/write_literal.rs:42:58
    |
-41 |     writeln!(&mut v, "{bar} {foo}", foo="hello", bar="world");
-   |                                                      ^^^^^^^
+LL |     writeln!(&mut v, "{bar} {foo}", foo = "hello", bar = "world");
+   |                                                          ^^^^^^^
 
 error: aborting due to 14 previous errors