]> git.lizzy.rs Git - rust.git/blob - tests/ui/fmt/format-args-capture-issue-102057.stderr
Rollup merge of #105784 - yanns:update_stdarch, r=Amanieu
[rust.git] / tests / ui / fmt / format-args-capture-issue-102057.stderr
1 error[E0425]: cannot find value `a` in this scope
2   --> $DIR/format-args-capture-issue-102057.rs:2:18
3    |
4 LL |     format!("\x7Ba}");
5    |                  ^ not found in this scope
6
7 error[E0425]: cannot find value `a` in this scope
8   --> $DIR/format-args-capture-issue-102057.rs:4:18
9    |
10 LL |     format!("\x7Ba\x7D");
11    |                  ^ not found in this scope
12
13 error[E0425]: cannot find value `b` in this scope
14   --> $DIR/format-args-capture-issue-102057.rs:9:22
15    |
16 LL |     format!("\x7Ba} {b}");
17    |                      ^ help: a local variable with a similar name exists: `a`
18
19 error[E0425]: cannot find value `b` in this scope
20   --> $DIR/format-args-capture-issue-102057.rs:11:25
21    |
22 LL |     format!("\x7Ba\x7D {b}");
23    |                         ^ help: a local variable with a similar name exists: `a`
24
25 error[E0425]: cannot find value `b` in this scope
26   --> $DIR/format-args-capture-issue-102057.rs:13:25
27    |
28 LL |     format!("\x7Ba} \x7Bb}");
29    |                         ^ help: a local variable with a similar name exists: `a`
30
31 error[E0425]: cannot find value `b` in this scope
32   --> $DIR/format-args-capture-issue-102057.rs:15:28
33    |
34 LL |     format!("\x7Ba\x7D \x7Bb}");
35    |                            ^ help: a local variable with a similar name exists: `a`
36
37 error[E0425]: cannot find value `b` in this scope
38   --> $DIR/format-args-capture-issue-102057.rs:17:28
39    |
40 LL |     format!("\x7Ba\x7D \x7Bb\x7D");
41    |                            ^ help: a local variable with a similar name exists: `a`
42
43 error: aborting due to 7 previous errors
44
45 For more information about this error, try `rustc --explain E0425`.