]> git.lizzy.rs Git - rust.git/blob - tests/ui/lint/unused_parens_multibyte_recovery.stderr
Auto merge of #106884 - clubby789:fieldless-enum-debug, r=michaelwoerister
[rust.git] / tests / ui / lint / unused_parens_multibyte_recovery.stderr
1 error: this file contains an unclosed delimiter
2   --> $DIR/unused_parens_multibyte_recovery.rs:11:17
3    |
4 LL | fn f(){(print!(á
5    |       --      - ^
6    |       ||      |
7    |       ||      unclosed delimiter
8    |       |unclosed delimiter
9    |       unclosed delimiter
10
11 error: this file contains an unclosed delimiter
12   --> $DIR/unused_parens_multibyte_recovery.rs:11:17
13    |
14 LL | fn f(){(print!(á
15    |       --      - ^
16    |       ||      |
17    |       ||      unclosed delimiter
18    |       |unclosed delimiter
19    |       unclosed delimiter
20
21 error: this file contains an unclosed delimiter
22   --> $DIR/unused_parens_multibyte_recovery.rs:11:17
23    |
24 LL | fn f(){(print!(á
25    |       --      - ^
26    |       ||      |
27    |       ||      unclosed delimiter
28    |       |unclosed delimiter
29    |       unclosed delimiter
30
31 error: format argument must be a string literal
32   --> $DIR/unused_parens_multibyte_recovery.rs:11:16
33    |
34 LL | fn f(){(print!(á
35    |                ^
36    |
37 help: you might be missing a string literal to format with
38    |
39 LL | fn f(){(print!("{}", á
40    |                +++++
41
42 error: aborting due to 4 previous errors
43