summary refs log tree commit diff
path: root/src/test/ui/parser/issue-62973.stderr
blob: 95ee52d810ddcd85139b0870978257bea380b619 (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
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:25
   |
LL | fn p() { match s { v, E { [) {) }
   |        -       -       -^ expected one of `,` or `}`
   |        |       |       |
   |        |       |       help: `}` may belong here
   |        |       while parsing this struct
   |        unclosed delimiter

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:28
   |
LL | fn p() { match s { v, E { [) {) }
   |                           -^ mismatched closing delimiter
   |                           |
   |                           unclosed delimiter

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

error: aborting due to 7 previous errors