rust/tests/ui/parser/issue-68987-unmatch-issue-3.stderr

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

20 lines
555 B
Plaintext
Raw Normal View History

2023-01-26 02:52:57 +00:00
error: unexpected closing delimiter: `}`
--> $DIR/issue-68987-unmatch-issue-3.rs:8:1
|
LL | write!&mut res, " ");
| - missing open `(` for this delimiter
2023-01-26 02:52:57 +00:00
LL | }
LL | }
| ^ unexpected closing delimiter
error: mismatched closing delimiter: `)`
--> $DIR/issue-68987-unmatch-issue-3.rs:5:19
|
LL | while cnt < j {
| ^ unclosed delimiter
LL | write!&mut res, " ");
| ^ mismatched closing delimiter
error: aborting due to 2 previous errors