@@ -7,45 +7,40 @@ LL | format!("{valuea} {valueb}", valuea=5, valuec=7);
77 | formatting specifier missing
88
99error[E0425]: cannot find value `foo` in this scope
10- --> $DIR/format-args-capture-missing-variables.rs:4:13
10+ --> $DIR/format-args-capture-missing-variables.rs:4:17
1111 |
1212LL | format!("{} {foo} {} {bar} {}", 1, 2, 3);
13- | ^^^^^^^^^^^^^^^^^ ^^^^^ not found in this scope
13+ | ^^^^^ not found in this scope
1414
1515error[E0425]: cannot find value `bar` in this scope
16- --> $DIR/format-args-capture-missing-variables.rs:4:13
16+ --> $DIR/format-args-capture-missing-variables.rs:4:26
1717 |
1818LL | format!("{} {foo} {} {bar} {}", 1, 2, 3);
19- | ^^^^^^^^^^^^^^^^^ ^^^^^ not found in this scope
19+ | ^^^^^ not found in this scope
2020
2121error[E0425]: cannot find value `foo` in this scope
22- --> $DIR/format-args-capture-missing-variables.rs:8:13
22+ --> $DIR/format-args-capture-missing-variables.rs:8:14
2323 |
2424LL | format!("{foo}");
25- | ^^ ^^^^^ not found in this scope
25+ | ^^^^^ not found in this scope
2626
2727error[E0425]: cannot find value `valueb` in this scope
28- --> $DIR/format-args-capture-missing-variables.rs:10:13
28+ --> $DIR/format-args-capture-missing-variables.rs:10:23
2929 |
3030LL | format!("{valuea} {valueb}", valuea=5, valuec=7);
31- | ^^^^^^^^^^^ ^^^^^^^^ not found in this scope
31+ | ^^^^^^^^ not found in this scope
3232
3333error[E0425]: cannot find value `foo` in this scope
34- --> $DIR/format-args-capture-missing-variables.rs:14:13
34+ --> $DIR/format-args-capture-missing-variables.rs:16:9
3535 |
36- LL | format!(r##"
37- | _____________^
38- LL | |
39- LL | | {foo}
40- LL | |
41- LL | | "##);
42- | |_______^ not found in this scope
36+ LL | {foo}
37+ | ^^^^^ not found in this scope
4338
4439error[E0425]: cannot find value `foo` in this scope
45- --> $DIR/format-args-capture-missing-variables.rs:21:12
40+ --> $DIR/format-args-capture-missing-variables.rs:21:13
4641 |
4742LL | panic!("{foo} {bar}", bar=1);
48- | ^^^^^^^^ ^^^^^ not found in this scope
43+ | ^^^^^ not found in this scope
4944
5045error: aborting due to 7 previous errors
5146
0 commit comments