rust/tests/ui/parser/issues/issue-63116.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
675 B
Plaintext
Raw Normal View History

error: this file contains an unclosed delimiter
2019-11-16 08:54:09 -06:00
--> $DIR/issue-63116.rs:3:18
|
LL | impl W <s(f;Y(;]
| - - ^
| | |
| | missing open `[` for this delimiter
| unclosed delimiter
2019-11-16 08:54:09 -06:00
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:14
2019-11-16 08:54:09 -06:00
|
LL | impl W <s(f;Y(;]
| ^ ^ mismatched closing delimiter
2019-11-16 08:54:09 -06:00
| |
| unclosed delimiter
error: aborting due to 3 previous errors