@@ -9,7 +9,7 @@ help: try this
9
9
|
10
10
LL - print!("Hello {}", "world");
11
11
LL + print!("Hello world");
12
- |
12
+ |
13
13
14
14
error: literal with an empty format string
15
15
--> $DIR/print_literal.rs:26:36
@@ -21,7 +21,7 @@ help: try this
21
21
|
22
22
LL - println!("Hello {} {}", world, "world");
23
23
LL + println!("Hello {} world", world);
24
- |
24
+ |
25
25
26
26
error: literal with an empty format string
27
27
--> $DIR/print_literal.rs:27:26
@@ -33,7 +33,7 @@ help: try this
33
33
|
34
34
LL - println!("Hello {}", "world");
35
35
LL + println!("Hello world");
36
- |
36
+ |
37
37
38
38
error: literal with an empty format string
39
39
--> $DIR/print_literal.rs:32:25
@@ -45,7 +45,7 @@ help: try this
45
45
|
46
46
LL - println!("{0} {1}", "hello", "world");
47
47
LL + println!("hello {1}", "world");
48
- |
48
+ |
49
49
50
50
error: literal with an empty format string
51
51
--> $DIR/print_literal.rs:32:34
@@ -57,7 +57,7 @@ help: try this
57
57
|
58
58
LL - println!("{0} {1}", "hello", "world");
59
59
LL + println!("{0} world", "hello");
60
- |
60
+ |
61
61
62
62
error: literal with an empty format string
63
63
--> $DIR/print_literal.rs:33:25
@@ -69,7 +69,7 @@ help: try this
69
69
|
70
70
LL - println!("{1} {0}", "hello", "world");
71
71
LL + println!("{1} hello", "world");
72
- |
72
+ |
73
73
74
74
error: literal with an empty format string
75
75
--> $DIR/print_literal.rs:33:34
@@ -81,7 +81,7 @@ help: try this
81
81
|
82
82
LL - println!("{1} {0}", "hello", "world");
83
83
LL + println!("world {0}", "hello");
84
- |
84
+ |
85
85
86
86
error: literal with an empty format string
87
87
--> $DIR/print_literal.rs:36:29
@@ -93,7 +93,7 @@ help: try this
93
93
|
94
94
LL - println!("{foo} {bar}", foo = "hello", bar = "world");
95
95
LL + println!("hello {bar}", bar = "world");
96
- |
96
+ |
97
97
98
98
error: literal with an empty format string
99
99
--> $DIR/print_literal.rs:36:44
@@ -105,7 +105,7 @@ help: try this
105
105
|
106
106
LL - println!("{foo} {bar}", foo = "hello", bar = "world");
107
107
LL + println!("{foo} world", foo = "hello");
108
- |
108
+ |
109
109
110
110
error: literal with an empty format string
111
111
--> $DIR/print_literal.rs:37:29
@@ -117,7 +117,7 @@ help: try this
117
117
|
118
118
LL - println!("{bar} {foo}", foo = "hello", bar = "world");
119
119
LL + println!("{bar} hello", bar = "world");
120
- |
120
+ |
121
121
122
122
error: literal with an empty format string
123
123
--> $DIR/print_literal.rs:37:44
@@ -129,7 +129,7 @@ help: try this
129
129
|
130
130
LL - println!("{bar} {foo}", foo = "hello", bar = "world");
131
131
LL + println!("world {foo}", foo = "hello");
132
- |
132
+ |
133
133
134
134
error: aborting due to 11 previous errors
135
135
0 commit comments