summaryrefslogtreecommitdiffstats
path: root/src/test/ui/lint/unused_parens_multibyte_recovery.stderr
blob: a0302b17e255d06d2fe85d7fb810ef67fbcd2f28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
error: this file contains an unclosed delimiter
  --> $DIR/unused_parens_multibyte_recovery.rs:11:17
   |
LL | fn f(){(print!(á
   |       --      - ^
   |       ||      |
   |       ||      unclosed delimiter
   |       |unclosed delimiter
   |       unclosed delimiter

error: this file contains an unclosed delimiter
  --> $DIR/unused_parens_multibyte_recovery.rs:11:17
   |
LL | fn f(){(print!(á
   |       --      - ^
   |       ||      |
   |       ||      unclosed delimiter
   |       |unclosed delimiter
   |       unclosed delimiter

error: this file contains an unclosed delimiter
  --> $DIR/unused_parens_multibyte_recovery.rs:11:17
   |
LL | fn f(){(print!(á
   |       --      - ^
   |       ||      |
   |       ||      unclosed delimiter
   |       |unclosed delimiter
   |       unclosed delimiter

error: format argument must be a string literal
  --> $DIR/unused_parens_multibyte_recovery.rs:11:16
   |
LL | fn f(){(print!(á
   |                ^
   |
help: you might be missing a string literal to format with
   |
LL | fn f(){(print!("{}", á
   |                +++++

error: aborting due to 4 previous errors