]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/print_literal.stderr
bless clippy tests
[rust.git] / tests / ui / print_literal.stderr
index 39e0387cb5ec3ccc8128d6d428c399e01df09ecf..72aae0756033a5593826f90b900296a292a2d0df 100644 (file)
 error: literal with an empty format string
-  --> $DIR/print_literal.rs:23:71
+  --> $DIR/print_literal.rs:25:24
    |
-23 |     println!("{} of {:b} people know binary, the other half doesn't", 1, 2);
-   |                                                                       ^
+LL |     print!("Hello {}", "world");
+   |                        ^^^^^^^
    |
-   = note: `-D print-literal` implied by `-D warnings`
-
-error: literal with an empty format string
-  --> $DIR/print_literal.rs:24:24
+   = note: `-D clippy::print-literal` implied by `-D warnings`
+help: try this
+   |
+LL -     print!("Hello {}", "world");
+LL +     print!("Hello world");
    |
-24 |     print!("Hello {}", "world");
-   |                        ^^^^^^^
 
 error: literal with an empty format string
-  --> $DIR/print_literal.rs:25:36
+  --> $DIR/print_literal.rs:26:36
    |
-25 |     println!("Hello {} {}", world, "world");
+LL |     println!("Hello {} {}", world, "world");
    |                                    ^^^^^^^
+   |
+help: try this
+   |
+LL -     println!("Hello {} {}", world, "world");
+LL +     println!("Hello {} world", world);
+   |
 
 error: literal with an empty format string
-  --> $DIR/print_literal.rs:26:26
+  --> $DIR/print_literal.rs:27:26
    |
-26 |     println!("Hello {}", "world");
+LL |     println!("Hello {}", "world");
    |                          ^^^^^^^
-
-error: literal with an empty format string
-  --> $DIR/print_literal.rs:27:30
    |
-27 |     println!("10 / 4 is {}", 2.5);
-   |                              ^^^
-
-error: literal with an empty format string
-  --> $DIR/print_literal.rs:28:28
+help: try this
+   |
+LL -     println!("Hello {}", "world");
+LL +     println!("Hello world");
    |
-28 |     println!("2 + 1 = {}", 3);
-   |                            ^
 
 error: literal with an empty format string
-  --> $DIR/print_literal.rs:33:25
+  --> $DIR/print_literal.rs:32:25
    |
-33 |     println!("{0} {1}", "hello", "world");
+LL |     println!("{0} {1}", "hello", "world");
    |                         ^^^^^^^
+   |
+help: try this
+   |
+LL -     println!("{0} {1}", "hello", "world");
+LL +     println!("hello {1}", "world");
+   |
 
 error: literal with an empty format string
-  --> $DIR/print_literal.rs:33:34
+  --> $DIR/print_literal.rs:32:34
    |
-33 |     println!("{0} {1}", "hello", "world");
+LL |     println!("{0} {1}", "hello", "world");
    |                                  ^^^^^^^
+   |
+help: try this
+   |
+LL -     println!("{0} {1}", "hello", "world");
+LL +     println!("{0} world", "hello");
+   |
 
 error: literal with an empty format string
-  --> $DIR/print_literal.rs:34:25
+  --> $DIR/print_literal.rs:33:25
    |
-34 |     println!("{1} {0}", "hello", "world");
+LL |     println!("{1} {0}", "hello", "world");
    |                         ^^^^^^^
+   |
+help: try this
+   |
+LL -     println!("{1} {0}", "hello", "world");
+LL +     println!("{1} hello", "world");
+   |
 
 error: literal with an empty format string
-  --> $DIR/print_literal.rs:34:34
+  --> $DIR/print_literal.rs:33:34
    |
-34 |     println!("{1} {0}", "hello", "world");
+LL |     println!("{1} {0}", "hello", "world");
    |                                  ^^^^^^^
+   |
+help: try this
+   |
+LL -     println!("{1} {0}", "hello", "world");
+LL +     println!("world {0}", "hello");
+   |
 
 error: literal with an empty format string
-  --> $DIR/print_literal.rs:37:33
+  --> $DIR/print_literal.rs:36:29
+   |
+LL |     println!("{foo} {bar}", foo = "hello", bar = "world");
+   |                             ^^^^^^^^^^^^^
+   |
+help: try this
+   |
+LL -     println!("{foo} {bar}", foo = "hello", bar = "world");
+LL +     println!("hello {bar}", bar = "world");
    |
-37 |     println!("{foo} {bar}", foo="hello", bar="world");
-   |                                 ^^^^^^^
 
 error: literal with an empty format string
-  --> $DIR/print_literal.rs:37:46
+  --> $DIR/print_literal.rs:36:44
+   |
+LL |     println!("{foo} {bar}", foo = "hello", bar = "world");
+   |                                            ^^^^^^^^^^^^^
+   |
+help: try this
+   |
+LL -     println!("{foo} {bar}", foo = "hello", bar = "world");
+LL +     println!("{foo} world", foo = "hello");
    |
-37 |     println!("{foo} {bar}", foo="hello", bar="world");
-   |                                              ^^^^^^^
 
 error: literal with an empty format string
-  --> $DIR/print_literal.rs:38:33
+  --> $DIR/print_literal.rs:37:29
+   |
+LL |     println!("{bar} {foo}", foo = "hello", bar = "world");
+   |                             ^^^^^^^^^^^^^
+   |
+help: try this
+   |
+LL -     println!("{bar} {foo}", foo = "hello", bar = "world");
+LL +     println!("{bar} hello", bar = "world");
    |
-38 |     println!("{bar} {foo}", foo="hello", bar="world");
-   |                                 ^^^^^^^
 
 error: literal with an empty format string
-  --> $DIR/print_literal.rs:38:46
+  --> $DIR/print_literal.rs:37:44
+   |
+LL |     println!("{bar} {foo}", foo = "hello", bar = "world");
+   |                                            ^^^^^^^^^^^^^
+   |
+help: try this
+   |
+LL -     println!("{bar} {foo}", foo = "hello", bar = "world");
+LL +     println!("world {foo}", foo = "hello");
    |
-38 |     println!("{bar} {foo}", foo="hello", bar="world");
-   |                                              ^^^^^^^
 
-error: aborting due to 14 previous errors
+error: aborting due to 11 previous errors