]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/write_literal.stderr
Auto merge of #8374 - Alexendoo:bless-revisions, r=camsteffen
[rust.git] / tests / ui / write_literal.stderr
index 40c21902bf2e56c34b2cd3fcdbbd2cdd50ca991c..593e9493ec5904edacfc7eafd6277121141ac6a8 100644 (file)
 error: literal with an empty format string
-  --> $DIR/write_literal.rs:36:79
+  --> $DIR/write_literal.rs:30:27
    |
-36 |     writeln!(&mut v, "{} of {:b} people know binary, the other half doesn't", 1, 2);
-   |                                                                               ^
+LL |     write!(v, "Hello {}", "world");
+   |                           ^^^^^^^
    |
    = note: `-D clippy::write-literal` implied by `-D warnings`
-
-error: literal with an empty format string
-  --> $DIR/write_literal.rs:37:32
+help: try this
    |
-37 |     write!(&mut v, "Hello {}", "world");
-   |                                ^^^^^^^
+LL -     write!(v, "Hello {}", "world");
+LL +     write!(v, "Hello world");
+   | 
 
 error: literal with an empty format string
-  --> $DIR/write_literal.rs:38:44
+  --> $DIR/write_literal.rs:31:39
    |
-38 |     writeln!(&mut v, "Hello {} {}", world, "world");
-   |                                            ^^^^^^^
-
-error: literal with an empty format string
-  --> $DIR/write_literal.rs:39:34
+LL |     writeln!(v, "Hello {} {}", world, "world");
+   |                                       ^^^^^^^
    |
-39 |     writeln!(&mut v, "Hello {}", "world");
-   |                                  ^^^^^^^
-
-error: literal with an empty format string
-  --> $DIR/write_literal.rs:40:38
+help: try this
    |
-40 |     writeln!(&mut v, "10 / 4 is {}", 2.5);
-   |                                      ^^^
+LL -     writeln!(v, "Hello {} {}", world, "world");
+LL +     writeln!(v, "Hello {} world", world);
+   | 
 
 error: literal with an empty format string
-  --> $DIR/write_literal.rs:41:36
+  --> $DIR/write_literal.rs:32:29
    |
-41 |     writeln!(&mut v, "2 + 1 = {}", 3);
-   |                                    ^
+LL |     writeln!(v, "Hello {}", "world");
+   |                             ^^^^^^^
+   |
+help: try this
+   |
+LL -     writeln!(v, "Hello {}", "world");
+LL +     writeln!(v, "Hello world");
+   | 
 
 error: literal with an empty format string
-  --> $DIR/write_literal.rs:46:33
+  --> $DIR/write_literal.rs:37:28
+   |
+LL |     writeln!(v, "{0} {1}", "hello", "world");
+   |                            ^^^^^^^
    |
-46 |     writeln!(&mut v, "{0} {1}", "hello", "world");
-   |                                 ^^^^^^^
+help: try this
+   |
+LL -     writeln!(v, "{0} {1}", "hello", "world");
+LL +     writeln!(v, "hello {1}", "world");
+   | 
 
 error: literal with an empty format string
-  --> $DIR/write_literal.rs:46:42
+  --> $DIR/write_literal.rs:37:37
+   |
+LL |     writeln!(v, "{0} {1}", "hello", "world");
+   |                                     ^^^^^^^
+   |
+help: try this
    |
-46 |     writeln!(&mut v, "{0} {1}", "hello", "world");
-   |                                          ^^^^^^^
+LL -     writeln!(v, "{0} {1}", "hello", "world");
+LL +     writeln!(v, "{0} world", "hello");
+   | 
 
 error: literal with an empty format string
-  --> $DIR/write_literal.rs:47:33
+  --> $DIR/write_literal.rs:38:28
    |
-47 |     writeln!(&mut v, "{1} {0}", "hello", "world");
-   |                                 ^^^^^^^
+LL |     writeln!(v, "{1} {0}", "hello", "world");
+   |                            ^^^^^^^
+   |
+help: try this
+   |
+LL -     writeln!(v, "{1} {0}", "hello", "world");
+LL +     writeln!(v, "{1} hello", "world");
+   | 
 
 error: literal with an empty format string
-  --> $DIR/write_literal.rs:47:42
+  --> $DIR/write_literal.rs:38:37
+   |
+LL |     writeln!(v, "{1} {0}", "hello", "world");
+   |                                     ^^^^^^^
    |
-47 |     writeln!(&mut v, "{1} {0}", "hello", "world");
-   |                                          ^^^^^^^
+help: try this
+   |
+LL -     writeln!(v, "{1} {0}", "hello", "world");
+LL +     writeln!(v, "world {0}", "hello");
+   | 
 
 error: literal with an empty format string
-  --> $DIR/write_literal.rs:50:43
+  --> $DIR/write_literal.rs:41:32
+   |
+LL |     writeln!(v, "{foo} {bar}", foo = "hello", bar = "world");
+   |                                ^^^^^^^^^^^^^
+   |
+help: try this
    |
-50 |     writeln!(&mut v, "{foo} {bar}", foo = "hello", bar = "world");
-   |                                           ^^^^^^^
+LL -     writeln!(v, "{foo} {bar}", foo = "hello", bar = "world");
+LL +     writeln!(v, "hello {bar}", bar = "world");
+   | 
 
 error: literal with an empty format string
-  --> $DIR/write_literal.rs:50:58
+  --> $DIR/write_literal.rs:41:47
    |
-50 |     writeln!(&mut v, "{foo} {bar}", foo = "hello", bar = "world");
-   |                                                          ^^^^^^^
+LL |     writeln!(v, "{foo} {bar}", foo = "hello", bar = "world");
+   |                                               ^^^^^^^^^^^^^
+   |
+help: try this
+   |
+LL -     writeln!(v, "{foo} {bar}", foo = "hello", bar = "world");
+LL +     writeln!(v, "{foo} world", foo = "hello");
+   | 
 
 error: literal with an empty format string
-  --> $DIR/write_literal.rs:51:43
+  --> $DIR/write_literal.rs:42:32
+   |
+LL |     writeln!(v, "{bar} {foo}", foo = "hello", bar = "world");
+   |                                ^^^^^^^^^^^^^
    |
-51 |     writeln!(&mut v, "{bar} {foo}", foo = "hello", bar = "world");
-   |                                           ^^^^^^^
+help: try this
+   |
+LL -     writeln!(v, "{bar} {foo}", foo = "hello", bar = "world");
+LL +     writeln!(v, "{bar} hello", bar = "world");
+   | 
 
 error: literal with an empty format string
-  --> $DIR/write_literal.rs:51:58
+  --> $DIR/write_literal.rs:42:47
+   |
+LL |     writeln!(v, "{bar} {foo}", foo = "hello", bar = "world");
+   |                                               ^^^^^^^^^^^^^
+   |
+help: try this
    |
-51 |     writeln!(&mut v, "{bar} {foo}", foo = "hello", bar = "world");
-   |                                                          ^^^^^^^
+LL -     writeln!(v, "{bar} {foo}", foo = "hello", bar = "world");
+LL +     writeln!(v, "world {foo}", foo = "hello");
+   | 
 
-error: aborting due to 14 previous errors
+error: aborting due to 11 previous errors