@@ -9,7 +9,7 @@ help: try this
99 |
1010LL - print!("Hello {}", "world");
1111LL + print!("Hello world");
12- |
12+ |
1313
1414error: literal with an empty format string
1515 --> $DIR/print_literal.rs:26:36
@@ -21,7 +21,7 @@ help: try this
2121 |
2222LL - println!("Hello {} {}", world, "world");
2323LL + println!("Hello {} world", world);
24- |
24+ |
2525
2626error: literal with an empty format string
2727 --> $DIR/print_literal.rs:27:26
@@ -33,7 +33,7 @@ help: try this
3333 |
3434LL - println!("Hello {}", "world");
3535LL + println!("Hello world");
36- |
36+ |
3737
3838error: literal with an empty format string
3939 --> $DIR/print_literal.rs:32:25
@@ -45,7 +45,7 @@ help: try this
4545 |
4646LL - println!("{0} {1}", "hello", "world");
4747LL + println!("hello {1}", "world");
48- |
48+ |
4949
5050error: literal with an empty format string
5151 --> $DIR/print_literal.rs:32:34
@@ -57,7 +57,7 @@ help: try this
5757 |
5858LL - println!("{0} {1}", "hello", "world");
5959LL + println!("{0} world", "hello");
60- |
60+ |
6161
6262error: literal with an empty format string
6363 --> $DIR/print_literal.rs:33:25
@@ -69,7 +69,7 @@ help: try this
6969 |
7070LL - println!("{1} {0}", "hello", "world");
7171LL + println!("{1} hello", "world");
72- |
72+ |
7373
7474error: literal with an empty format string
7575 --> $DIR/print_literal.rs:33:34
@@ -81,7 +81,7 @@ help: try this
8181 |
8282LL - println!("{1} {0}", "hello", "world");
8383LL + println!("world {0}", "hello");
84- |
84+ |
8585
8686error: literal with an empty format string
8787 --> $DIR/print_literal.rs:36:29
@@ -93,7 +93,7 @@ help: try this
9393 |
9494LL - println!("{foo} {bar}", foo = "hello", bar = "world");
9595LL + println!("hello {bar}", bar = "world");
96- |
96+ |
9797
9898error: literal with an empty format string
9999 --> $DIR/print_literal.rs:36:44
@@ -105,7 +105,7 @@ help: try this
105105 |
106106LL - println!("{foo} {bar}", foo = "hello", bar = "world");
107107LL + println!("{foo} world", foo = "hello");
108- |
108+ |
109109
110110error: literal with an empty format string
111111 --> $DIR/print_literal.rs:37:29
@@ -117,7 +117,7 @@ help: try this
117117 |
118118LL - println!("{bar} {foo}", foo = "hello", bar = "world");
119119LL + println!("{bar} hello", bar = "world");
120- |
120+ |
121121
122122error: literal with an empty format string
123123 --> $DIR/print_literal.rs:37:44
@@ -129,7 +129,7 @@ help: try this
129129 |
130130LL - println!("{bar} {foo}", foo = "hello", bar = "world");
131131LL + println!("world {foo}", foo = "hello");
132- |
132+ |
133133
134134error: aborting due to 11 previous errors
135135
0 commit comments