summary refs log tree commit diff
path: root/src/test/ui/parser/issue-63116.stderr
blob: 4766dfafea1c9abf71ed769eff3c19a33f14922f (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
error: this file contains an unclosed delimiter
  --> $DIR/issue-63116.rs:3:18
   |
LL | impl W <s(f;Y(;]
   |          -       ^
   |          |
   |          unclosed delimiter

error: expected one of `!`, `(`, `)`, `+`, `,`, `::`, or `<`, found `;`
  --> $DIR/issue-63116.rs:3:12
   |
LL | impl W <s(f;Y(;]
   |            ^ expected one of 7 possible tokens

error: mismatched closing delimiter: `]`
  --> $DIR/issue-63116.rs:3:16
   |
LL | impl W <s(f;Y(;]
   |              - ^ mismatched closing delimiter
   |              |
   |              unclosed delimiter

error: aborting due to 3 previous errors