2023-01-25 20:52:57 -06:00
|
|
|
error: unexpected closing delimiter: `}`
|
|
|
|
--> $DIR/issue-68987-unmatch-issue.rs:10:1
|
|
|
|
|
|
2023-01-25 21:02:19 -06:00
|
|
|
LL | match o {
|
|
|
|
| - this delimiter might not be properly closed...
|
|
|
|
LL | Some(_x) => // Missing '{'
|
|
|
|
LL | let _ = if true {};
|
|
|
|
| -- block is empty, you might have not meant to close it
|
|
|
|
LL | }
|
|
|
|
| - ...as it matches this but it has different indentation
|
|
|
|
...
|
2023-01-25 20:52:57 -06:00
|
|
|
LL | }
|
|
|
|
| ^ unexpected closing delimiter
|
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error
|
2023-01-25 20:52:57 -06:00
|
|
|
|