summaryrefslogtreecommitdiffstats
path: root/tests/ui/parser/issues/issue-62973.stderr
blob: 4737bc71860c24ef903af60947b32c449d636955 (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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
error: this file contains an unclosed delimiter
  --> $DIR/issue-62973.rs:8:2
   |
LL | fn p() { match s { v, E { [) {) }
   |        -         - unclosed delimiter
   |        |
   |        unclosed delimiter
LL |
LL |
   |  ^

error: this file contains an unclosed delimiter
  --> $DIR/issue-62973.rs:8:2
   |
LL | fn p() { match s { v, E { [) {) }
   |        -         - unclosed delimiter
   |        |
   |        unclosed delimiter
LL |
LL |
   |  ^

error: expected one of `,`, `:`, or `}`, found `{`
  --> $DIR/issue-62973.rs:6:8
   |
LL | fn p() { match s { v, E { [) {) }
   |        ^       -        ^ expected one of `,`, `:`, or `}`
   |        |       |
   |        |       while parsing this struct
   |        unclosed delimiter
   |
help: `}` may belong here
   |
LL | fn p() { match s { v, E} { [) {) }
   |                        +
help: try naming a field
   |
LL | fn p() { match s { v, E: E { [) {) }
   |                       ++

error: struct literals are not allowed here
  --> $DIR/issue-62973.rs:6:16
   |
LL |   fn p() { match s { v, E { [) {) }
   |  ________________^
LL | |
LL | |
   | |_^
   |
help: surround the struct literal with parentheses
   |
LL ~ fn p() { match (s { v, E { [) {) }
LL | 
LL ~ )
   |

error: expected one of `.`, `?`, `{`, or an operator, found `}`
  --> $DIR/issue-62973.rs:8:2
   |
LL | fn p() { match s { v, E { [) {) }
   |          ----- while parsing this `match` expression
LL |
LL |
   |  ^ expected one of `.`, `?`, `{`, or an operator

error: mismatched closing delimiter: `)`
  --> $DIR/issue-62973.rs:6:27
   |
LL | fn p() { match s { v, E { [) {) }
   |                           ^^ mismatched closing delimiter
   |                           |
   |                           unclosed delimiter

error: mismatched closing delimiter: `)`
  --> $DIR/issue-62973.rs:6:30
   |
LL | fn p() { match s { v, E { [) {) }
   |                              ^^ mismatched closing delimiter
   |                              |
   |                              unclosed delimiter

error: aborting due to 7 previous errors