summary refs log tree commit diff
path: root/src/test/ui/parser/issue-62973.stderr
blob: 141076bf6b6388c5ceab1184dc0cd50a7dc4b8d3 (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
error: this file contains an un-closed delimiter
  --> $DIR/issue-62973.rs:8:2
   |
LL | fn p() { match s { v, E { [) {) }
   |        -         - un-closed delimiter
   |        |
   |        un-closed delimiter
LL | 
LL | 
   |  ^

error: expected one of `,` or `}`, found `{`
  --> $DIR/issue-62973.rs:6:25
   |
LL | fn p() { match s { v, E { [) {) }
   |                -        ^ expected one of `,` or `}` here
   |                |
   |                while parsing this struct

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:1
   |
LL | fn p() { match s { v, E { [) {) }
   |          ----- while parsing this match expression
LL | 
LL | 
   | ^ expected one of `.`, `?`, `{`, or an operator here

error: incorrect close delimiter: `)`
  --> $DIR/issue-62973.rs:6:28
   |
LL | fn p() { match s { v, E { [) {) }
   |                           -^ incorrect close delimiter
   |                           |
   |                           un-closed delimiter

error: incorrect close delimiter: `)`
  --> $DIR/issue-62973.rs:6:31
   |
LL | fn p() { match s { v, E { [) {) }
   |                              -^ incorrect close delimiter
   |                              |
   |                              un-closed delimiter

error: aborting due to 6 previous errors