2023-02-28 01:55:19 -06:00
|
|
|
error: mismatched closing delimiter: `)`
|
|
|
|
--> $DIR/issue-68987-unmatch-issue-2.rs:3:32
|
|
|
|
|
|
|
|
|
LL | async fn obstest() -> Result<> {
|
|
|
|
| ^ unclosed delimiter
|
|
|
|
LL | let obs_connect = || -> Result<(), MyError) {
|
|
|
|
| ^ mismatched closing delimiter
|
|
|
|
|
2023-01-25 20:52:57 -06:00
|
|
|
error: unexpected closing delimiter: `}`
|
|
|
|
--> $DIR/issue-68987-unmatch-issue-2.rs:14:1
|
|
|
|
|
|
2023-01-25 21:02:19 -06:00
|
|
|
LL | let obs_connect = || -> Result<(), MyError) {
|
|
|
|
| - missing open `(` for this delimiter
|
|
|
|
...
|
2023-01-25 20:52:57 -06:00
|
|
|
LL | }
|
|
|
|
| ^ unexpected closing delimiter
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|