summaryrefslogtreecommitdiffstats
path: root/tests/ui/parser/issue-68987-unmatch-issue-3.stderr
blob: dfc4407ed6565f91c5cb8883e4c06f97fcc98c60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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: unexpected closing delimiter: `}`
  --> $DIR/issue-68987-unmatch-issue-3.rs:8:1
   |
LL |         write!&mut res, " ");
   |                            - missing open `(` for this delimiter
LL |     }
LL | }
   | ^ unexpected closing delimiter

error: aborting due to 2 previous errors