]> git.lizzy.rs Git - rust.git/blob - tests/ui/fmt/issue-103826.stderr
Rollup merge of #106625 - Swatinem:ref/cov6, r=nagisa
[rust.git] / tests / ui / fmt / issue-103826.stderr
1 error: 1 positional argument in format string, but no arguments were given
2   --> $DIR/issue-103826.rs:2:14
3    |
4 LL |     format!("{\x7D");
5    |              ^^^^^
6
7 error: 1 positional argument in format string, but no arguments were given
8   --> $DIR/issue-103826.rs:4:14
9    |
10 LL |     format!("\x7B\x7D");
11    |              ^^^^^^^^
12
13 error: 2 positional arguments in format string, but no arguments were given
14   --> $DIR/issue-103826.rs:6:14
15    |
16 LL |     format!("{\x7D {\x7D");
17    |              ^^^^^ ^^^^^
18
19 error: aborting due to 3 previous errors
20