summaryrefslogtreecommitdiffstats
path: root/tests/ui/parser/issues/issue-67377-invalid-syntax-in-enum-discriminant.stderr
blob: 9f631edf680c8edcb68d55af5269f16a745f7585 (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
error: mismatched closing delimiter: `]`
  --> $DIR/issue-67377-invalid-syntax-in-enum-discriminant.rs:5:27
   |
LL |         V = [PhantomData; { [ () ].len() ].len() as isize,
   |             -             ^              ^ mismatched closing delimiter
   |             |             |
   |             |             unclosed delimiter
   |             closing delimiter possibly meant for this

error: mismatched closing delimiter: `]`
  --> $DIR/issue-67377-invalid-syntax-in-enum-discriminant.rs:12:24
   |
LL |         V = [Vec::new; { [].len()  ].len() as isize,
   |             -          ^           ^ mismatched closing delimiter
   |             |          |
   |             |          unclosed delimiter
   |             closing delimiter possibly meant for this

error: mismatched closing delimiter: `]`
  --> $DIR/issue-67377-invalid-syntax-in-enum-discriminant.rs:19:24
   |
LL |         V = [Vec::new; { [0].len() ].len() as isize,
   |             -          ^           ^ mismatched closing delimiter
   |             |          |
   |             |          unclosed delimiter
   |             closing delimiter possibly meant for this

error: this file contains an unclosed delimiter
  --> $DIR/issue-67377-invalid-syntax-in-enum-discriminant.rs:23:65
   |
LL |         V = [PhantomData; { [ () ].len() ].len() as isize,
   |                                          - missing open `[` for this delimiter
...
LL |         V = [Vec::new; { [].len()  ].len() as isize,
   |                                    - missing open `[` for this delimiter
...
LL | mod c {
   |       - unclosed delimiter
LL |     enum Bug {
LL |         V = [Vec::new; { [0].len() ].len() as isize,
   |                                    - missing open `[` for this delimiter
...
LL | fn main() {}
   |                                                                 ^

error: aborting due to 4 previous errors